Updated ZDoom_ACS.cfg and ZDoom_DECORATE.cfg.

This commit is contained in:
MaxED 2015-02-22 21:07:43 +00:00
parent 0ba6490b8a
commit 00df72ef23
2 changed files with 9 additions and 0 deletions

View file

@ -89,6 +89,7 @@ keywords
Ceiling_Waggle = "Ceiling_Waggle(tag, amp, freq, offset, time)";
ChangeActorAngle = "ChangeActorAngle(int tid, fixed angle[, bool interpolate = false])\nSets the angle for the actors with the specified tid.\nIf tid is 0, it sets the angle for the activator of the script.\nangle: a fixed point angle in the range of 0.0 to 1.0 (N = 0.25, W = 0.5, S = 0.75, E = 1.0).";
ChangeActorPitch = "ChangeActorPitch(int tid, fixed pitch[, bool interpolate = false])\nSets the pitch for the actors with the specified tid. If tid is 0, it sets the pitch for the activator of the script.\npitch: a fixed point angle in the range of 0.0 to 1.0.";
ChangeActorRoll = "void ChangeActorRoll(int tid, fixed angle[, bool interpolate = false])";
ChangeCamera = "ChangeCamera(tid, who, revert)";
ChangeCeiling = "void ChangeCeiling(int tag, str flatname)";
ChangeFloor = "void ChangeFloor(int tag, str flatname)";
@ -190,6 +191,7 @@ keywords
GetActorPitch = "fixed GetActorPitch(int tid)";
GetActorPowerupTics = "int GetActorPowerupTics(int tid, str powerup)";
GetActorProperty = "int GetActorProperty(int tid, int property)";
GetActorRoll = "fixed GetActorRoll(int tid)";
GetActorVelX = "fixed GetActorVelX(int tid)";
GetActorVelY = "fixed GetActorVelY(int tid)";
GetActorVelZ = "fixed GetActorVelZ(int tid)";
@ -358,6 +360,7 @@ keywords
SetActorPitch = "void SetActorPitch(int tid, int pitch)\nSets the actor's Pitch.\npitch: a fixed point angle in the range of 0.0 to 1.0.";
SetActorPosition = "bool SetActorPosition(int tid, fixed x, fixed y, fixed z, bool fog)\nThis function sets the x, y, and z coordinates of the specified actor, with or without teleport fog.\nReturns TRUE if the actor position was changed successfully.";
SetActorProperty = "void SetActorProperty(int tid, int property, [int|float|str] value)\nproperty: one of the APROP_ properties.";
SetActorRoll = "void SetActorRoll(int tid, fixed angle)";
SetActorState = "int SetActorState(int tid, str statename[, bool exact])\nForces the actor(s) with the matching tid into the specified state, as defined in Decorate.\nIf tid is 0, the activator is affected.\nThe exact parameter specifies whether or not partial state name matches are accepted.";
SetActorVelocity = "bool SetActorVelocity(int tid, fixed velx, fixed vely, fixed velz, bool add, bool setbob)\nChanges actor velocity.\ntid: TID of things to affect. If 0, the activator is used.\nvelx, vely, velz: The desired velocity for the affected things.\nadd: If true, each affected actor's velocity is modified by the velx, vely\nand velz parameters, rather than replaced by them.\nsetbob: If true, the speed adjustment influences the bobbing of any concerned player actor.";
SetAirControl = "void SetAirControl(fixed amount)\nSets how well the player can move while in the air.\nThe default amount is 0.00390625.";

View file

@ -328,6 +328,7 @@ keywords
random2 = "random2[identifier](mask)\nReturns a random integer value between -mask and +mask.";
frandom = "frandom[identifier](min, max)\nReturns a random floating point value between min and max.";
randompick = "randompick[identifier](int, ...)\nPicks a number from the numbers placed in it.\nThis can take an unlimited amount of parameters.";
frandompick = "frandompick[identifier](int, ...)\nSimilar to randompick but for float-point values.";
//State keywords
//Bright = "Bright";
CanRaise = "CanRaise";
@ -914,6 +915,7 @@ constants
INVENTORY.NOSCREENFLASH;
INVENTORY.TOSSED;
INVENTORY.ALWAYSRESPAWN;
INVENTORY.TRANSFER;
//Weapons
WEAPON.NOAUTOFIRE;
WEAPON.READYSNDHALF;
@ -1142,4 +1144,8 @@ constants
FAF_NODISTFACTOR;
//A_QuakeEx flags
QF_RELATIVE;
QF_SCALEDOWN;
QF_SCALEUP;
QF_MAX;
QF_FULLINTENSITY;
}