From fb983f7da3641b6c98c3b5b965823bc3425fe52d Mon Sep 17 00:00:00 2001 From: Josef Date: Tue, 1 Apr 2025 22:45:07 +0200 Subject: [PATCH] Grass Patch Update --- Runtime/Godot/Editor/GodotNodeData.cs | 2 + Runtime/Procedural/Assets/Grass/GrassPatch.cs | 67 +++++++++++++++++-- Runtime/Procedural/Mesh/MeshGeometry.cs | 64 +++++++++++++++++- .../Texture2D/Albedo Texture.tres | 2 +- 4 files changed, 125 insertions(+), 10 deletions(-) diff --git a/Runtime/Godot/Editor/GodotNodeData.cs b/Runtime/Godot/Editor/GodotNodeData.cs index 5d8d9b4..56f5bf6 100644 --- a/Runtime/Godot/Editor/GodotNodeData.cs +++ b/Runtime/Godot/Editor/GodotNodeData.cs @@ -119,6 +119,8 @@ namespace Rokojori cache = new Dictionary(); } + cache.Clear(); + var objectData = new SerializedGodotObject(); var serializer = GodotBuiltInDataLibrary.serializers.Find( s => s.Handles( obj ) ); diff --git a/Runtime/Procedural/Assets/Grass/GrassPatch.cs b/Runtime/Procedural/Assets/Grass/GrassPatch.cs index 6c2fa6a..ae25d95 100644 --- a/Runtime/Procedural/Assets/Grass/GrassPatch.cs +++ b/Runtime/Procedural/Assets/Grass/GrassPatch.cs @@ -96,8 +96,6 @@ namespace Rokojori [ExportGroup( "Blade Shape")] - [Export] - public Curve bladeScale = MathX.Curve( 1f ); [Export] public Curve bladeHeight = MathX.Curve( 0.4f ); @@ -137,7 +135,7 @@ namespace Rokojori public Curve rolling2 = null; - [ExportGroup( "Blade Offset & Scale")] + [ExportGroup( "Blade Offset")] [Export] public Curve positionJitter = MathX.Curve( 0.05f ); @@ -148,12 +146,38 @@ namespace Rokojori [Export] public Curve positionJitterZ = MathX.Curve( 0.05f ); + + + [ExportGroup( "Blade Scale")] + + [Export] + public Curve bladeScale = MathX.Curve( 1f ); + [Export] public Curve scaleByDistanceX = MathX.Curve( 1f ); [Export] public Curve scaleByDistanceZ = MathX.Curve( 1f ); + [Export] + public Curve xRemapper = null; + + [Export] + public Curve yRemapper = null; + + [Export] + public Curve zRemapper = null; + + [Export] + public Curve scaleXZForY = null; + + [Export] + public Curve scaleXForY = null; + + [Export] + public Curve scaleZForY = null; + + [ExportGroup( "Blade Rotation")] [Export] @@ -195,7 +219,7 @@ namespace Rokojori [Export] public int currentLODLevel = -1; - SerializedGodotObject _cached; + // SerializedGodotObject _cached; public override void _Process( double delta ) { @@ -207,20 +231,20 @@ namespace Rokojori update = false; - var current = SerializedGodotObject.Create( this ); + /*var current = SerializedGodotObject.Create( this ); var isEquals = _cached != null && _cached.Equals( current ); if ( _cached != null && _cached.Equals( current ) ) { return; - } + }*/ CreatePatch(); - _cached = current; + // _cached = current; } float _maxWidth = 0; @@ -388,6 +412,35 @@ namespace Rokojori mg.CenterMesh( true, false, true, box ); } + if ( xRemapper != null ) + { + mg.RemapX( xRemapper ); + } + + if ( yRemapper != null ) + { + mg.RemapY( yRemapper ); + } + + if ( zRemapper != null ) + { + mg.RemapZ( zRemapper ); + } + + if ( scaleXZForY != null ) + { + mg.ScaleXZForY( scaleXZForY ); + } + + if ( scaleXForY != null ) + { + mg.ScaleXForY( scaleXForY ); + } + + if ( scaleZForY != null ) + { + mg.ScaleZForY( scaleZForY ); + } X_numTriangles = mg.indices.Count / 3; diff --git a/Runtime/Procedural/Mesh/MeshGeometry.cs b/Runtime/Procedural/Mesh/MeshGeometry.cs index c6780b3..36e7cf5 100644 --- a/Runtime/Procedural/Mesh/MeshGeometry.cs +++ b/Runtime/Procedural/Mesh/MeshGeometry.cs @@ -9,7 +9,7 @@ namespace Rokojori { public class MeshGeometry { - public string name = ""; + public string name; public List vertices = new List(); public List indices = new List(); @@ -437,7 +437,7 @@ namespace Rokojori { this.name = name; Initialize( normals, uvs, colors, uvs2 ); - } + } public static MeshGeometry BillboardQuad( float size = 1 ) { @@ -791,6 +791,66 @@ namespace Rokojori } } + public void RemapX( Curve curve ) + { + for ( int i = 0; i < vertices.Count; i++ ) + { + var v = vertices[ i ]; + v.X = curve.Sample( v.X ); + vertices[ i ] = v; + } + } + + public void RemapY( Curve curve ) + { + for ( int i = 0; i < vertices.Count; i++ ) + { + var v = vertices[ i ]; + v.Y = curve.Sample( v.Y ); + vertices[ i ] = v; + } + } + + public void RemapZ( Curve curve ) + { + for ( int i = 0; i < vertices.Count; i++ ) + { + var v = vertices[ i ]; + v.Z = curve.Sample( v.Z ); + vertices[ i ] = v; + } + } + + public void ScaleXForY( Curve curve ) + { + for ( int i = 0; i < vertices.Count; i++ ) + { + var v = vertices[ i ]; + v.X = v.X * curve.Sample( v.Y ); + vertices[ i ] = v; + } + } + + public void ScaleZForY( Curve curve ) + { + for ( int i = 0; i < vertices.Count; i++ ) + { + var v = vertices[ i ]; + v.Z = v.Z * curve.Sample( v.Y ); + vertices[ i ] = v; + } + } + + public void ScaleXZForY( Curve curve ) + { + for ( int i = 0; i < vertices.Count; i++ ) + { + var v = vertices[ i ]; + var s = curve.Sample( v.Y ); + vertices[ i ] = new Vector3( v.X * s, v.Y, v.Z * s ); + } + } + public void CenterMesh( bool onX = true, bool onY = true, bool onZ = true, Box3 centerCalcluationBox = null ) { var offset = new Vector3( 0, 0, 0 ); diff --git a/Runtime/Shading/Properties/Property Library/Texture2D/Albedo Texture.tres b/Runtime/Shading/Properties/Property Library/Texture2D/Albedo Texture.tres index 804a7c6..a917f2a 100644 --- a/Runtime/Shading/Properties/Property Library/Texture2D/Albedo Texture.tres +++ b/Runtime/Shading/Properties/Property Library/Texture2D/Albedo Texture.tres @@ -1,6 +1,6 @@ [gd_resource type="Resource" script_class="Texture2DPropertyName" load_steps=2 format=3 uid="uid://dldbju3x0x2ow"] -[ext_resource type="Script" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Texture2DPropertyName.cs" id="1_d1083"] +[ext_resource type="Script" uid="uid://bsreukpi8eiyy" path="res://addons/rokojori_action_library/Runtime/Shading/Properties/Texture2DPropertyName.cs" id="1_d1083"] [resource] script = ExtResource("1_d1083")