22 lines
384 B
C#
22 lines
384 B
C#
![]() |
|
||
|
using System.Diagnostics;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using System;
|
||
|
using Godot;
|
||
|
using System.Threading.Tasks;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace Rokojori.Reallusion
|
||
|
{
|
||
|
[Tool]
|
||
|
[GlobalClass]
|
||
|
public partial class CCMeshSettings:Resource
|
||
|
{
|
||
|
[Export]
|
||
|
public string meshName;
|
||
|
|
||
|
[Export]
|
||
|
public CCMaterialSettings[] materials = [];
|
||
|
}
|
||
|
}
|