rj-action-library/Runtime/Procedural/Mesh/Modifiers/X_MeshGeometryModifierResou...

20 lines
300 B
C#

using System.Collections;
using System.Collections.Generic;
using Godot;
using System;
namespace Rokojori
{
[Tool]
[GlobalClass]
public partial class X_MeshGeometryModifierResource:Resource
{
public virtual MeshGeometry Modify( MeshGeometry mg )
{
return mg;
}
}
}