mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-17 01:22:18 +00:00
35 lines
1.1 KiB
INI
35 lines
1.1 KiB
INI
|
/*******************************************************************\
|
||
|
GZDoom Builder Script highlighting definitions for MODELDEF
|
||
|
\*******************************************************************/
|
||
|
|
||
|
// Editor settings
|
||
|
description = "GZDoom MODELDEF";
|
||
|
codepage = 0;
|
||
|
extensions = "mdd";
|
||
|
casesensitive = false;
|
||
|
insertcase = 1; // 0=Normal, 1=Lowercase, 2=Uppercase
|
||
|
lexer = 35; // CPP-style, case-insensitive
|
||
|
keywordhelp = "http://zdoom.org/wiki/MODELDEF";
|
||
|
|
||
|
keywords
|
||
|
{
|
||
|
Path = "Path <\"path\">";
|
||
|
Model = "Model <model index> <\"model file\">";
|
||
|
Skin = "Skin <model index> <\"skin file\">";
|
||
|
Scale = "Scale <float X scale> <float Y scale> <float Z scale>";
|
||
|
Frame = "Frame <XXXX> <X> <model index> <\"frame name\">";
|
||
|
FrameIndex = "FrameIndex <XXXX> <X> <model index> <frame number>";
|
||
|
Rotation-Speed = "Rotation-Speed <float>";
|
||
|
Rotation-Vector = "Rotation-Vector <float x> <float y> <float z>";
|
||
|
Rotation-Center = "Rotation-Center <float x> <float y> <float z>";
|
||
|
ZOffset = "ZOffset <float>";
|
||
|
}
|
||
|
|
||
|
constants
|
||
|
{
|
||
|
PITCHFROMMOMENTUM;
|
||
|
IGNORETRANSLATION;
|
||
|
INTERPOLATEDOUBLEDFRAMES;
|
||
|
ROTATING;
|
||
|
NOINTERPOLATION;
|
||
|
}
|