mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
Assigned barrier sides to Event structures, added clearscope to ConsoleProcess because it handles both sides
This commit is contained in:
parent
f4a546aee6
commit
43d3e3e5c3
1 changed files with 6 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
||||||
class BaseEvent native { } // just a base class. it doesn't inherit from Object on the scripting side so you can't call Destroy() on it and break everything.
|
class BaseEvent native { } // just a base class. it doesn't inherit from Object on the scripting side so you can't call Destroy() on it and break everything.
|
||||||
|
|
||||||
class RenderEvent : BaseEvent native
|
class RenderEvent : BaseEvent native ui
|
||||||
{
|
{
|
||||||
native readonly Vector3 ViewPos;
|
native readonly Vector3 ViewPos;
|
||||||
native readonly double ViewAngle;
|
native readonly double ViewAngle;
|
||||||
|
@ -10,7 +10,7 @@ class RenderEvent : BaseEvent native
|
||||||
native readonly Actor Camera;
|
native readonly Actor Camera;
|
||||||
}
|
}
|
||||||
|
|
||||||
class WorldEvent : BaseEvent native
|
class WorldEvent : BaseEvent native play
|
||||||
{
|
{
|
||||||
// for loaded/unloaded
|
// for loaded/unloaded
|
||||||
native readonly bool IsSaveGame;
|
native readonly bool IsSaveGame;
|
||||||
|
@ -28,7 +28,7 @@ class WorldEvent : BaseEvent native
|
||||||
native readonly double DamageAngle;
|
native readonly double DamageAngle;
|
||||||
}
|
}
|
||||||
|
|
||||||
class PlayerEvent : BaseEvent native
|
class PlayerEvent : BaseEvent native play
|
||||||
{
|
{
|
||||||
// this is the player number that caused the event.
|
// this is the player number that caused the event.
|
||||||
// note: you can get player struct from this by using players[e.PlayerNumber]
|
// note: you can get player struct from this by using players[e.PlayerNumber]
|
||||||
|
@ -37,7 +37,7 @@ class PlayerEvent : BaseEvent native
|
||||||
native readonly bool IsReturn;
|
native readonly bool IsReturn;
|
||||||
}
|
}
|
||||||
|
|
||||||
class UiEvent : BaseEvent native
|
class UiEvent : BaseEvent native ui
|
||||||
{
|
{
|
||||||
// d_gui.h
|
// d_gui.h
|
||||||
enum EGUIEvent
|
enum EGUIEvent
|
||||||
|
@ -121,7 +121,7 @@ class UiEvent : BaseEvent native
|
||||||
native readonly bool IsAlt;
|
native readonly bool IsAlt;
|
||||||
}
|
}
|
||||||
|
|
||||||
class InputEvent : BaseEvent native
|
class InputEvent : BaseEvent native play
|
||||||
{
|
{
|
||||||
enum EGenericEvent
|
enum EGenericEvent
|
||||||
{
|
{
|
||||||
|
@ -321,7 +321,7 @@ class StaticEventHandler : Object native play
|
||||||
virtual native bool InputProcess(InputEvent e);
|
virtual native bool InputProcess(InputEvent e);
|
||||||
|
|
||||||
//
|
//
|
||||||
virtual native void ConsoleProcess(ConsoleEvent e);
|
virtual native clearscope void ConsoleProcess(ConsoleEvent e);
|
||||||
|
|
||||||
// this value will be queried on Register() to decide the relative order of this handler to every other.
|
// this value will be queried on Register() to decide the relative order of this handler to every other.
|
||||||
// this is most useful in UI systems.
|
// this is most useful in UI systems.
|
||||||
|
|
Loading…
Reference in a new issue