rj-action-library/Runtime/Procedural/Mesh/MeshSurface.cs

24 lines
387 B
C#
Raw Normal View History

2025-01-03 12:09:23 +00:00
using System.Collections;
using System.Collections.Generic;
using Godot;
using System;
namespace Rokojori
{
public class MeshSurface
{
public Mesh mesh;
public Material material;
public int index;
public MeshSurface( Mesh mesh, Material material, int index = 0 )
{
this.index = index;
this.mesh = mesh;
this.material = material;
}
}
}