2025-01-03 12:09:23 +00:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Godot;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-05-22 12:25:02 +00:00
|
|
|
using Rokojori.Extensions;
|
2025-01-03 12:09:23 +00:00
|
|
|
namespace Rokojori
|
|
|
|
|
{
|
|
|
|
|
public class SingleMaterialMesh
|
|
|
|
|
{
|
|
|
|
|
public Mesh mesh;
|
|
|
|
|
public Material material;
|
|
|
|
|
|
|
|
|
|
public SingleMaterialMesh( Mesh mesh, Material material = null )
|
|
|
|
|
{
|
|
|
|
|
this.mesh = mesh;
|
|
|
|
|
this.material = material;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|