rj-action-library/Runtime/Reallusion/CCImportSettings/CCMaterialTarget.cs

24 lines
390 B
C#
Raw Normal View History

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 CCMaterialTarget:Resource
{
[Export]
public string meshName = "";
[Export]
public int materialSurfaceIndex = 0;
}
}