mirror of
https://github.com/Relintai/pandemonium_engine_easy_charts.git
synced 2024-11-14 10:17:24 +01:00
11 lines
169 B
GDScript
11 lines
169 B
GDScript
extends Spatial
|
|
|
|
onready var Point = $Chart/Point
|
|
|
|
|
|
func _ready():
|
|
# var p : MeshInstance = Point.duplicate()
|
|
# p.transform.origin = Vector3(1,0,1)
|
|
# add_child(p)
|
|
pass
|