mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
15 lines
148 B
GDScript3
15 lines
148 B
GDScript3
|
|
|
||
|
|
extends RigidBody
|
||
|
|
|
||
|
|
# member variables here, example:
|
||
|
|
# var a=2
|
||
|
|
# var b="textvar"
|
||
|
|
|
||
|
|
var disabled=false
|
||
|
|
|
||
|
|
func _ready():
|
||
|
|
# Initalization here
|
||
|
|
pass
|
||
|
|
|
||
|
|
|