This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for digit in range(100): print(str('fizz' * (digit % 3 == 0)) + str('buzz' * (digit % 5 == 0))) #rip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extends KinematicBody | |
| var defaultspeed = 1000 | |
| var speed = defaultspeed | |
| var direction = Vector3() | |
| var gravity = -250 | |
| var velocity = Vector3() | |
| var mousespeed = 0.005 | |
| func _physics_process(delta): |
NewerOlder