You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 15:06:20 +00:00
🆙 added latest changes
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import { RoomEngineTriggerWidgetEvent } from './RoomEngineTriggerWidgetEvent';
|
||||
|
||||
export class RoomEngineAreaHideStateEvent extends RoomEngineTriggerWidgetEvent
|
||||
{
|
||||
public static UPDATE_STATE_AREA_HIDE: string = 'REAHSE_UPDATE_STATE_AREA_HIDE';
|
||||
|
||||
private _isOn: boolean;
|
||||
|
||||
constructor(roomId: number, furniId: number, category: number, on: boolean)
|
||||
{
|
||||
super(RoomEngineAreaHideStateEvent.UPDATE_STATE_AREA_HIDE, roomId, furniId, category);
|
||||
|
||||
this._isOn = on;
|
||||
}
|
||||
|
||||
public get isOn(): boolean
|
||||
{
|
||||
return this._isOn;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user