rj-action-library/Runtime/Procedural/Mesh/Modifiers/MeshGeometryModifier.cs

16 lines
238 B
C#
Raw Normal View History

2025-01-17 17:44:27 +00:00
using System.Collections;
using System.Collections.Generic;
using Godot;
using System;
namespace Rokojori
{
public class MeshGeometryModifier
{
2025-07-14 10:35:37 +00:00
public virtual MeshGeometry Modify( MeshGeometry mg ){ return mg; }
2025-01-17 17:44:27 +00:00
}
}