lerpValue
+ )
+ {
+ var propertyTransition = activeTransitions.Find( t => t != null && EqualityComparer.Default.Equals( t.propertyType, property ) );
+
+ if ( propertyTransition == null )
+ {
+ propertyTransition = new ActiveStyleTransition();
+ propertyTransition.propertyType = property;
+ propertyTransition.value = activeValue;
+ propertyTransition.transitioning = false;
+
+ activeTransitions.Add( propertyTransition );
+
+ return computedValue;
+ }
+ else
+ {
+ if ( ! EqualityComparer.Default.Equals( propertyTransition.value, activeValue ) &&
+ ! propertyTransition.transitioning && getTransitionSettings() != null )
+ {
+ var transitionSettings = getTransitionSettings();
+ propertyTransition.timeLine = transitionSettings.timeLine;
+ propertyTransition.start = TimeLineManager.GetPosition( transitionSettings.timeLine );
+ propertyTransition.end = propertyTransition.start + transitionSettings.duration;
+ propertyTransition.transitioning = true;
+ propertyTransition.curve = transitionSettings.curve;
+ }
+ }
+
+ if ( EqualityComparer.Default.Equals( propertyTransition.value, activeValue ) )
+ {
+ propertyTransition.transitioning = false;
+ return computedValue;
+ }
+
+ var computedTransitionValue = computeValue( propertyTransition.value );
+
+ var transitionPhase = TimeLineManager.GetRangePhase( propertyTransition.timeLine, propertyTransition.start, propertyTransition.end );
+
+ if ( transitionPhase >= 1 )
+ {
+ activeTransitions.Remove( propertyTransition );
+ }
+
+ var amount = MathX.Clamp01( transitionPhase );
+ var curveAmount = amount;
+
+ if ( propertyTransition.curve != null )
+ {
+ curveAmount = propertyTransition.curve.Sample( curveAmount );
+ }
+
+ return lerpValue( computedTransitionValue, computedValue, curveAmount );
+ }
+ }
+}
\ No newline at end of file
diff --git a/Runtime/UI/Transitions/TransitionSettings.cs b/Runtime/UI/Transitions/TransitionSettings.cs
new file mode 100644
index 0000000..b7a0504
--- /dev/null
+++ b/Runtime/UI/Transitions/TransitionSettings.cs
@@ -0,0 +1,23 @@
+
+using Godot;
+using Rokojori;
+
+namespace Rokojori
+{
+
+ [Tool]
+ [GlobalClass]
+ public partial class TransitionSettings:Resource
+ {
+ [Export]
+ public float duration;
+
+ [Export]
+ public Curve curve;
+
+ [Export]
+ public RJTimeLine timeLine;
+
+
+ }
+}
\ No newline at end of file
diff --git a/Runtime/UI/Transitions/TransitionSettingsAll.cs b/Runtime/UI/Transitions/TransitionSettingsAll.cs
new file mode 100644
index 0000000..cd07cc3
--- /dev/null
+++ b/Runtime/UI/Transitions/TransitionSettingsAll.cs
@@ -0,0 +1,15 @@
+
+using Godot;
+using Rokojori;
+
+namespace Rokojori
+{
+
+ [Tool]
+ [GlobalClass]
+ public partial class TransitionSettingsAll:TransitionSettings
+ {
+ [Export]
+ public bool transitionAllProperties;
+ }
+}
\ No newline at end of file
diff --git a/Runtime/UI/Transitions/UIColorTransition.cs b/Runtime/UI/Transitions/UIColorTransition.cs
new file mode 100644
index 0000000..bc8f8b6
--- /dev/null
+++ b/Runtime/UI/Transitions/UIColorTransition.cs
@@ -0,0 +1,19 @@
+
+using Godot;
+using Rokojori;
+
+namespace Rokojori
+{
+
+ [Tool]
+ [GlobalClass]
+ public partial class UIColorTransition : Resource
+ {
+ [Export]
+ public UIStyleColorProperty property;
+
+ [Export]
+ public TransitionSettings settings;
+
+ }
+}
\ No newline at end of file
diff --git a/Runtime/UI/Transitions/UINumberTransition.cs b/Runtime/UI/Transitions/UINumberTransition.cs
new file mode 100644
index 0000000..0c25f21
--- /dev/null
+++ b/Runtime/UI/Transitions/UINumberTransition.cs
@@ -0,0 +1,18 @@
+
+using Godot;
+using Rokojori;
+
+namespace Rokojori
+{
+
+ [Tool]
+ [GlobalClass]
+ public partial class UINumberTransition : Resource
+ {
+ [Export]
+ public UIStyleNumberProperty property;
+
+ [Export]
+ public TransitionSettings settings;
+ }
+}
\ No newline at end of file
diff --git a/Runtime/UI/UI-Settings-Default.tres b/Runtime/UI/UI-Settings-Default.tres
new file mode 100644
index 0000000..8f58e7a
--- /dev/null
+++ b/Runtime/UI/UI-Settings-Default.tres
@@ -0,0 +1,8 @@
+[gd_resource type="Resource" script_class="UISettings" load_steps=3 format=3 uid="uid://dp57o0ykhkqfj"]
+
+[ext_resource type="Script" path="res://Scripts/Rokojori/Rokojori-Action-Library/Runtime/UI/UISettings.cs" id="1_5a283"]
+[ext_resource type="Resource" uid="uid://bhy8b3gopkq4m" path="res://Scripts/Rokojori/Rokojori-Action-Library/Runtime/UI/ShaderProperties/Vector2/Size.tres" id="2_cdd3u"]
+
+[resource]
+script = ExtResource("1_5a283")
+sizePropertyName = ExtResource("2_cdd3u")
diff --git a/Runtime/UI/UI.cs b/Runtime/UI/UI.cs
index f90a0b8..98e23aa 100644
--- a/Runtime/UI/UI.cs
+++ b/Runtime/UI/UI.cs
@@ -8,6 +8,9 @@ namespace Rokojori
[GlobalClass]
public partial class UI : Control
{
+ [Export]
+ public UISettings settings;
+
[Export]
public UINumber fontSize;
diff --git a/Runtime/UI/UISettings.cs b/Runtime/UI/UISettings.cs
new file mode 100644
index 0000000..523a258
--- /dev/null
+++ b/Runtime/UI/UISettings.cs
@@ -0,0 +1,13 @@
+
+using Godot;
+
+namespace Rokojori
+{
+ [Tool]
+ [GlobalClass]
+ public partial class UISettings : Resource
+ {
+ [Export]
+ public Vector2PropertyName sizePropertyName;
+ }
+}
\ No newline at end of file
diff --git a/Runtime/VirtualCameras/FollowCamera3D.cs b/Runtime/VirtualCameras/FollowCamera3D.cs
index 12cdbac..b289012 100644
--- a/Runtime/VirtualCameras/FollowCamera3D.cs
+++ b/Runtime/VirtualCameras/FollowCamera3D.cs
@@ -49,13 +49,13 @@ namespace Rokojori
void Rotate( float delta )
{
- var currentRotation = Math3D.GetGlobalRotation( this );
+ var currentRotation = Math3D.GetGlobalQuaternion( this );
LookAt( target.GlobalPosition, Vector3.Up, true );
- var nextRotation = Math3D.GetGlobalRotation( this );
+ var nextRotation = Math3D.GetGlobalQuaternion( this );
var smoothedRotation = smoother.SmoothWithCoefficient( currentRotation, nextRotation, rotationSmoothingCoefficient, delta );
- Math3D.SetGlobalRotation( this, smoothedRotation );
+ Math3D.SetGlobalRotationTo( this, smoothedRotation );
}
}
}
\ No newline at end of file
diff --git a/Tools/GizmoDrawer.cs b/Tools/GizmoDrawer.cs
new file mode 100644
index 0000000..3b24f95
--- /dev/null
+++ b/Tools/GizmoDrawer.cs
@@ -0,0 +1,46 @@
+
+using Godot;
+using Rokojori;
+using System.Collections.Generic;
+
+namespace Rokojori
+{
+ public interface GizmoDrawer
+ {
+ void DrawGizmo( EditorNode3DGizmoPlugin gizmoPlugin, EditorNode3DGizmo gizmo );
+
+ }
+
+ public interface GizmoDrawerWithHandles:GizmoDrawer
+ {
+ string GetHandleName( EditorNode3DGizmo gizmo, int handleId, bool secondary );
+ Variant GetHandleValue( EditorNode3DGizmo gizmo, int handleId, bool secondary );
+
+ void SetHandle( EditorNode3DGizmo gizmo, int id, bool secondary, Camera3D camera, Vector2 point );
+ void CommitHandle( EditorNode3DGizmo gizmo, int id, bool secondary, Variant restore, bool cancel );
+
+ /*
+
+ public string GetHandleName( EditorNode3DGizmo gizmo, int handleId, bool secondary )
+ {
+ return "";
+ }
+
+ public Variant GetHandleValue( EditorNode3DGizmo gizmo, int handleId, bool secondary )
+ {
+ return Variant.From( 0 );
+ }
+
+ public void SetHandle( EditorNode3DGizmo gizmo, int id, bool secondary, Camera3D camera, Vector2 point )
+ {
+
+ }
+
+ public void CommitHandle( EditorNode3DGizmo gizmo, int id, bool secondary, Variant restore, bool cancel )
+ {
+
+ }
+
+ */
+ }
+}
\ No newline at end of file
diff --git a/Tools/GizmoDrawerPlugin.cs b/Tools/GizmoDrawerPlugin.cs
new file mode 100644
index 0000000..681e127
--- /dev/null
+++ b/Tools/GizmoDrawerPlugin.cs
@@ -0,0 +1,88 @@
+
+using Godot;
+using Rokojori;
+using System.Collections.Generic;
+
+namespace Rokojori
+{
+ [Tool]
+ public partial class GizmoDrawerPlugin : EditorNode3DGizmoPlugin
+ {
+ public GizmoDrawerPlugin()
+ {
+ CreateMaterial( "main", new Color( 1, 1, 1 , 1 ) );
+ }
+
+ public override string _GetGizmoName()
+ {
+ return "Gizmo Drawer";
+ }
+
+ public override bool _HasGizmo( Node3D node )
+ {
+ return node is GizmoDrawer;
+ }
+
+ public override void _Redraw( EditorNode3DGizmo gizmo )
+ {
+ var gizmoDrawer = gizmo.GetNode3D() as GizmoDrawer;
+
+ if ( gizmoDrawer == null )
+ {
+ return;
+ }
+
+ gizmoDrawer.DrawGizmo( this, gizmo );
+
+ }
+
+ public override string _GetHandleName( EditorNode3DGizmo gizmo, int handleId, bool secondary )
+ {
+ var gizmoDrawerWithHandles = gizmo.GetNode3D() as GizmoDrawerWithHandles;
+
+ if ( gizmoDrawerWithHandles == null )
+ {
+ return null;
+ }
+
+ return gizmoDrawerWithHandles.GetHandleName( gizmo, handleId, secondary );
+ }
+
+ public override Variant _GetHandleValue( EditorNode3DGizmo gizmo, int handleId, bool secondary )
+ {
+ var gizmoDrawerWithHandles = gizmo.GetNode3D() as GizmoDrawerWithHandles;
+
+ if ( gizmoDrawerWithHandles == null )
+ {
+ return Variant.CreateFrom( (string)null );
+ }
+
+ return gizmoDrawerWithHandles.GetHandleValue( gizmo, handleId, secondary );
+ }
+
+
+ public override void _SetHandle( EditorNode3DGizmo gizmo, int handle_id, bool secondary, Camera3D camera, Vector2 screen_pos )
+ {
+ var gizmoDrawerWithHandles = gizmo.GetNode3D() as GizmoDrawerWithHandles;
+
+ if ( gizmoDrawerWithHandles == null )
+ {
+ return;
+ }
+
+ gizmoDrawerWithHandles.SetHandle( gizmo, handle_id, secondary, camera, screen_pos );
+ }
+
+ public override void _CommitHandle( EditorNode3DGizmo gizmo, int handle_id, bool secondary, Variant restore, bool cancel )
+ {
+ var gizmoDrawerWithHandles = gizmo.GetNode3D() as GizmoDrawerWithHandles;
+
+ if ( gizmoDrawerWithHandles == null )
+ {
+ return;
+ }
+
+ gizmoDrawerWithHandles.CommitHandle( gizmo, handle_id, secondary, restore, cancel );
+ }
+ }
+}
\ No newline at end of file
diff --git a/Tools/Gizmos.cs b/Tools/Gizmos.cs
new file mode 100644
index 0000000..16ccec8
--- /dev/null
+++ b/Tools/Gizmos.cs
@@ -0,0 +1,17 @@
+
+using Godot;
+using Rokojori;
+using System.Collections.Generic;
+
+namespace Rokojori
+{
+ [Tool]
+ public class Gizmos
+ {
+#if TOOLS
+
+
+
+#endif
+ }
+}
\ No newline at end of file