Skip to content

Commit

Permalink
temp: useful changes
Browse files Browse the repository at this point in the history
  • Loading branch information
akorzunin committed Aug 20, 2024
1 parent c344238 commit 7f30a54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/globals.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
extends Node
class_name Globals

const theme = preload("res://src/themes/BaseTheme.gd").T
const tw = preload('res://src/components/colors/TwColors.gd').tw
Expand Down
2 changes: 2 additions & 0 deletions src/models/icosahedron/test/discrete_control.gd
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ func t(q: Quaternion, m: MeshInstance3D):

@export var quat: Quaternion:
set(val):
if not m:
return
m.quaternion = val
get:
return m.quaternion
Expand Down

0 comments on commit 7f30a54

Please sign in to comment.