14 lines
170 B
C#
14 lines
170 B
C#
![]() |
using Godot;
|
||
|
using System.Reflection;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public enum VertexTransformSpace
|
||
|
{
|
||
|
Local,
|
||
|
World,
|
||
|
View
|
||
|
}
|
||
|
}
|