rj-action-library/Runtime/Procedural/Baking/BakingMaterialMode.cs

20 lines
214 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 enum BakingMaterialMode
{
Preview,
Albedo,
Normals,
ORM,
Depth
}
}