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
|
||
|
|
||
|
|