mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-23 03:16:12 -05:00
12 lines
248 B
C#
12 lines
248 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using UnityEngine;
|
|
|
|
namespace UniGLTF.MeshUtility
|
|
{
|
|
public class MeshIntegrationGroup
|
|
{
|
|
public string Name;
|
|
public List<Renderer> Renderers = new List<Renderer>();
|
|
}
|
|
} |