13 lines
294 B
GDScript
13 lines
294 B
GDScript
extends Skeleton3D
|
|
|
|
@export var target_skeleton: Skeleton3D
|
|
var physical_bones
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready() -> void:
|
|
pass
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
func _process(delta: float) -> void:
|
|
pass
|