mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-06 16:00:08 +01:00
10 lines
186 B
GDScript
10 lines
186 B
GDScript
extends 'Pawn.gd'
|
|
|
|
#warning-ignore:unused_class_variable
|
|
export (PackedScene) var combat_actor
|
|
#warning-ignore:unused_class_variable
|
|
var lost = false
|
|
|
|
func _ready():
|
|
set_process(false)
|