20 lines
214 B
C#
20 lines
214 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using Godot;
|
||
|
using System;
|
||
|
|
||
|
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public enum BakingMaterialMode
|
||
|
{
|
||
|
Preview,
|
||
|
Albedo,
|
||
|
Normals,
|
||
|
ORM,
|
||
|
Depth
|
||
|
}
|
||
|
|
||
|
}
|