|
|
@@ -3145,6 +3145,8 @@ Methods:
|
|
|
- void UnsubscribeFromEvents(Object* sender)
|
|
|
- void UnsubscribeFromAllEvents()
|
|
|
- void UnsubscribeFromAllEventsExcept(const Vector<String>& exceptionNames)
|
|
|
+- bool HasSubscribedToEvent(const String eventName)
|
|
|
+- bool HasSubscribedToEvent(Object* sender, const String eventName)
|
|
|
- LuaFile* GetScriptFile() const
|
|
|
- const String GetScriptObjectType() const
|
|
|
|
|
|
@@ -3839,6 +3841,8 @@ Methods:
|
|
|
- const String GetTypeName() const
|
|
|
- const String GetCategory() const
|
|
|
- void SendEvent(const String eventName, VariantMap* eventData = 0)
|
|
|
+- bool HasSubscribedToEvent(const String eventName) const
|
|
|
+- bool HasSubscribedToEvent(Object* sender, const String eventName) const
|
|
|
|
|
|
Properties:
|
|
|
|
|
|
@@ -7753,6 +7757,8 @@ Properties:
|
|
|
- Renderer* GetRenderer()
|
|
|
- Time* GetTime()
|
|
|
- UI* GetUI()
|
|
|
+- bool HasSubscribedToEvent(const String eventName)
|
|
|
+- bool HasSubscribedToEvent(Object* sender, const String eventName)
|
|
|
- bool IsAbsolutePath(const String pathName)
|
|
|
- bool IsAlpha(unsigned ch)
|
|
|
- bool IsDigit(unsigned ch)
|
|
|
@@ -7783,8 +7789,8 @@ Properties:
|
|
|
- float Sign(float value)
|
|
|
- float Sin(float angle)
|
|
|
- float SmoothStep(float lhs, float rhs, float t)
|
|
|
-- void SubscribeToEvent(const String eventName, void* functionOrFunctionName)
|
|
|
- void SubscribeToEvent(void* sender, const String eventName, void* functionOrFunctionName)
|
|
|
+- void SubscribeToEvent(const String eventName, void* functionOrFunctionName)
|
|
|
- float Tan(float angle)
|
|
|
- bool ToBool(const String source)
|
|
|
- Color ToColor(const String source)
|
|
|
@@ -7807,8 +7813,8 @@ Properties:
|
|
|
- Vector4 ToVector4(const String source, bool allowMissingCoords = false)
|
|
|
- void UnsubscribeFromAllEvents()
|
|
|
- void UnsubscribeFromAllEventsExcept(const Vector<String>& exceptionNames)
|
|
|
-- void UnsubscribeFromEvent(const String eventName)
|
|
|
- void UnsubscribeFromEvent(Object* sender, const String eventName)
|
|
|
+- void UnsubscribeFromEvent(const String eventName)
|
|
|
- void UnsubscribeFromEvents(Object* sender)
|
|
|
|
|
|
|