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

20 lines
300 B
C#
Raw Normal View History

2025-07-14 10:35:37 +00:00
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;
}
}
}