Files
2026-02-21 16:45:37 +08:00

50 lines
1.9 KiB
C#

namespace AmplifyImpostors
{
public static class ImpostorBakingTools
{
public static readonly string PrefGlobalFolder = "IMPOSTORS_GLOBALFOLDER";
public static readonly string PrefGlobalRelativeFolder = "IMPOSTORS_GLOBALRELATIVEFOLDER";
public static readonly string PrefGlobalDefault = "IMPOSTORS_GLOBALDEFAULT";
public static readonly string PrefGlobalTexImport = "IMPOSTORS_GLOBALTEXIMPORT";
public static readonly string PrefGlobalCreateLodGroup = "IMPOSTORS_GLOBALCREATELODGROUP ";
public static readonly string PrefGlobalGBuffer0Name = "IMPOSTORS_GLOBALGBUFFER0SUFFIX";
public static readonly string PrefGlobalGBuffer1Name = "IMPOSTORS_GLOBALGBUFFER1SUFFIX";
public static readonly string PrefGlobalGBuffer2Name = "IMPOSTORS_GLOBALGBUFFER2SUFFIX";
public static readonly string PrefGlobalGBuffer3Name = "IMPOSTORS_GLOBALGBUFFER3SUFFIX";
public static readonly string PrefGlobalBakingOptions = "IMPOSTORS_GLOBALBakingOptions";
public static readonly string PrefDataImpType = "IMPOSTORS_DATAIMPTYPE";
public static readonly string PrefDataTexSizeLocked = "IMPOSTORS_DATATEXSIZEXLOCKED";
public static readonly string PrefDataTexSizeSelected = "IMPOSTORS_DATATEXSIZEXSELECTED";
public static readonly string PrefDataTexSizeX = "IMPOSTORS_DATATEXSIZEX";
public static readonly string PrefDataTexSizeY = "IMPOSTORS_DATATEXSIZEY";
public static readonly string PrefDataDecoupledFrames = "IMPOSTORS_DATADECOUPLEDFRAMES";
public static readonly string PrefDataXFrames = "IMPOSTORS_DATAXFRAMES";
public static readonly string PrefDataYFrames = "IMPOSTORS_DATAYFRAMES";
public static readonly string PrefDataPixelBleeding = "IMPOSTORS_DATAPIXELBLEEDING";
public static readonly string PrefDataTolerance = "IMPOSTORS_DATATOLERANCE ";
public static readonly string PrefDataNormalScale = "IMPOSTORS_DATANORMALSCALE";
public static readonly string PrefDataMaxVertices = "IMPOSTORS_DATAMAXVERTICES";
}
}