14 lines
148 B
GDScript
14 lines
148 B
GDScript
|
|
extends RigidBody
|
|
|
|
# member variables here, example:
|
|
# var a=2
|
|
# var b="textvar"
|
|
|
|
var disabled=false
|
|
|
|
func _ready():
|
|
# Initalization here
|
|
pass
|
|
|
|
|