proto3 initial commit
This commit is contained in:
20
proto3/godot/scenes/characters/dual_test.gd
Normal file
20
proto3/godot/scenes/characters/dual_test.gd
Normal file
@@ -0,0 +1,20 @@
|
||||
extends Spatial
|
||||
|
||||
|
||||
# Declare member variables here. Examples:
|
||||
# var a = 2
|
||||
# var b = "text"
|
||||
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
$male2.add_collision_exception_with($male)
|
||||
$male2.set_meta("smart_object", true)
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
#func _process(delta):
|
||||
# pass
|
||||
|
||||
func _physics_process(delta):
|
||||
$male2.global_transform = $male.global_transform
|
||||
Reference in New Issue
Block a user