Pinned Loading
-
CreateMines.cs
CreateMines.cs 1private void CreateMines()
2{
3while (mineCount > 0)
4{
5int index = Random.Range(0, base.transform.childCount);
-
PlatformDetection.cs
PlatformDetection.cs 1hits = Physics.RaycastAll(_lastPos, Vector3.Normalize(transform.position - _lastPos), Vector3.Distance(_lastPos, transform.position));
23_lastPos = transform.position;
45for (int i = 0; i < hits.Length; i++)
-
Laser.cs
Laser.cs 1if (Physics.Raycast(transform.position, transform.forward, out hit))
2{
3if (hit.collider)
4{
5lr.SetPosition(1, new Vector3(0,0,hit.distance));
-
generateStory.js
generateStory.js 1var request = {
2method: "POST",
3headers: {
4"Content-Type": "application/json",
5"Authorization": "Bearer " + config.chatGpt.secret
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.