mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
reuse ImplicitRef and ExplicitRef for enable, disable, getdisabled, startscript; move scriptrunning and stopscript
This commit is contained in:
parent
05ffda9b47
commit
f0e2ee45fa
19 changed files with 155 additions and 601 deletions
|
@ -201,6 +201,16 @@ namespace Compiler
|
|||
|
||||
namespace Misc
|
||||
{
|
||||
const int opcodeScriptRunning = 46;
|
||||
const int opcodeStartScript = 47;
|
||||
const int opcodeStopScript = 48;
|
||||
const int opcodeEnable = 51;
|
||||
const int opcodeDisable = 52;
|
||||
const int opcodeGetDisabled = 53;
|
||||
const int opcodeEnableExplicit = 54;
|
||||
const int opcodeDisableExplicit = 55;
|
||||
const int opcodeGetDisabledExplicit = 56;
|
||||
const int opcodeStartScriptExplicit = 71;
|
||||
const int opcodeXBox = 0x200000c;
|
||||
const int opcodeOnActivate = 0x200000d;
|
||||
const int opcodeOnActivateExplicit = 0x2000306;
|
||||
|
@ -473,6 +483,8 @@ namespace Compiler
|
|||
|
||||
namespace Transformation
|
||||
{
|
||||
const int opcodeGetDistance = 49;
|
||||
const int opcodeGetDistanceExplicit = 57;
|
||||
const int opcodeSetScale = 0x2000164;
|
||||
const int opcodeSetScaleExplicit = 0x2000165;
|
||||
const int opcodeSetAngle = 0x2000166;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue