You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 23:16:20 +00:00
Move to Renderer V2
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
export class MouseEventType
|
||||
{
|
||||
public static MOUSE_CLICK: string = 'click';
|
||||
public static DOUBLE_CLICK: string = 'double_click';
|
||||
public static MOUSE_MOVE: string = 'mousemove';
|
||||
public static MOUSE_DOWN: string = 'mousedown';
|
||||
public static MOUSE_DOWN_LONG: string = 'mousedown_long';
|
||||
public static MOUSE_UP: string = 'mouseup';
|
||||
public static ROLL_OVER: string = 'mouseover';
|
||||
public static ROLL_OUT: string = 'mouseout';
|
||||
public static RIGHT_CLICK: string = 'contextmenu';
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
export class TouchEventType
|
||||
{
|
||||
public static TOUCH_START: string = 'touchstart';
|
||||
public static TOUCH_MOVE: string = 'touchmove';
|
||||
public static TOUCH_CANCEL: string = 'touchcancel';
|
||||
public static TOUCH_END: string = 'touchend';
|
||||
public static TOUCH_LONG: string = 'touchlong';
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
export class AvatarExpressionEnum
|
||||
{
|
||||
public static NONE: AvatarExpressionEnum = new AvatarExpressionEnum(0);
|
||||
public static WAVE: AvatarExpressionEnum = new AvatarExpressionEnum(1);
|
||||
public static BLOW: AvatarExpressionEnum = new AvatarExpressionEnum(2);
|
||||
public static LAUGH: AvatarExpressionEnum = new AvatarExpressionEnum(3);
|
||||
public static CRY: AvatarExpressionEnum = new AvatarExpressionEnum(4);
|
||||
public static IDLE: AvatarExpressionEnum = new AvatarExpressionEnum(5);
|
||||
public static JUMP: AvatarExpressionEnum = new AvatarExpressionEnum(6);
|
||||
public static RESPECT: AvatarExpressionEnum = new AvatarExpressionEnum(7);
|
||||
|
||||
private _ordinal: number;
|
||||
|
||||
constructor(k: number)
|
||||
{
|
||||
this._ordinal = k;
|
||||
}
|
||||
|
||||
public get ordinal(): number
|
||||
{
|
||||
return this._ordinal;
|
||||
}
|
||||
|
||||
public equals(k: AvatarExpressionEnum): boolean
|
||||
{
|
||||
return (k) && (k._ordinal == this._ordinal);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
export class ContextMenuEnum
|
||||
{
|
||||
public static DUMMY: string = 'DUMMY';
|
||||
public static FRIEND_FURNITURE: string = 'FRIEND_FURNITURE';
|
||||
public static MONSTERPLANT_SEED: string = 'MONSTERPLANT_SEED';
|
||||
public static MYSTERY_BOX: string = 'MYSTERY_BOX';
|
||||
public static EFFECT_BOX: string = 'EFFECT_BOX';
|
||||
public static MYSTERY_TROPHY: string = 'MYSTERY_TROPHY';
|
||||
public static RANDOM_TELEPORT: string = 'RANDOM_TELEPORT';
|
||||
public static PURCHASABLE_CLOTHING: string = 'PURCHASABLE_CLOTHING';
|
||||
public static GENERIC_USABLE: string = 'GENERIC_USABLE';
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
export class FriendWidgetEngravingWidgetTypeEnum
|
||||
{
|
||||
public static LOVE_LOCK: number = 0;
|
||||
public static CARVE_A_TREE: number = 1;
|
||||
public static FRIENDS_PORTRAIT: number = 2;
|
||||
public static WILD_WEST_WANTED: number = 3;
|
||||
public static HABBOWEEN: number = 4;
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
export class RoomWidgetEnum
|
||||
{
|
||||
public static CHAT_WIDGET: string = 'RWE_CHAT_WIDGET';
|
||||
public static INFOSTAND: string = 'RWE_INFOSTAND';
|
||||
public static ME_MENU: string = 'RWE_ME_MENU';
|
||||
public static CHAT_INPUT_WIDGET: string = 'RWE_CHAT_INPUT_WIDGET';
|
||||
public static FURNI_PLACEHOLDER: string = 'RWE_FURNI_PLACEHOLDER';
|
||||
public static FURNI_CREDIT_WIDGET: string = 'RWE_FURNI_CREDIT_WIDGET';
|
||||
public static FURNI_STICKIE_WIDGET: string = 'RWE_FURNI_STICKIE_WIDGET';
|
||||
public static FURNI_TROPHY_WIDGET: string = 'RWE_FURNI_TROPHY_WIDGET';
|
||||
public static FURNI_LOVELOCK_WIDGET: string = 'RWE_FURNI_LOVELOCK_WIDGET';
|
||||
public static FURNI_PRESENT_WIDGET: string = 'RWE_FURNI_PRESENT_WIDGET';
|
||||
public static FURNI_ECOTRONBOX_WIDGET: string = 'RWE_FURNI_ECOTRONBOX_WIDGET';
|
||||
public static FURNI_PET_PACKAGE_WIDGET: string = 'RWE_FURNI_PET_PACKAGE_WIDGET';
|
||||
public static PLAYLIST_EDITOR_WIDGET: string = 'RWE_PLAYLIST_EDITOR_WIDGET';
|
||||
public static DOORBELL: string = 'RWE_DOORBELL';
|
||||
public static LOADINGBAR: string = 'RWE_LOADINGBAR';
|
||||
public static ROOM_QUEUE: string = 'RWE_ROOM_QUEUE';
|
||||
public static ROOM_POLL: string = 'RWE_ROOM_POLL';
|
||||
public static ROOM_VOTE: string = 'RWE_ROOM_VOTE';
|
||||
public static USER_CHOOSER: string = 'RWE_USER_CHOOSER';
|
||||
public static FURNI_CHOOSER: string = 'RWE_FURNI_CHOOSER';
|
||||
public static ROOM_DIMMER: string = 'RWE_ROOM_DIMMER';
|
||||
public static FRIEND_REQUEST: string = 'RWE_FRIEND_REQUEST';
|
||||
public static CLOTHING_CHANGE: string = 'RWE_CLOTHING_CHANGE';
|
||||
public static CONVERSION_TRACKING: string = 'RWE_CONVERSION_TRACKING';
|
||||
public static USER_NOTIFICATION: string = 'RWE_USER_NOTIFICATION';
|
||||
public static FRIENDS_BAR: string = 'RWE_FRIENDS_BAR';
|
||||
public static PURSE_WIDGET: string = 'RWE_PURSE_WIDGET';
|
||||
public static AVATAR_INFO: string = 'RWE_AVATAR_INFO';
|
||||
public static WELCOME_GIFT: string = 'RWE_WELCOME_GIFT';
|
||||
public static SPAMWALL_POSTIT_WIDGET: string = 'RWE_SPAMWALL_POSTIT_WIDGET';
|
||||
public static EFFECTS: string = 'RWE_EFFECTS';
|
||||
public static MANNEQUIN: string = 'RWE_MANNEQUIN';
|
||||
public static FURNITURE_CONTEXT_MENU: string = 'RWE_FURNITURE_CONTEXT_MENU';
|
||||
public static LOCATION_WIDGET: string = 'RWE_LOCATION_WIDGET';
|
||||
public static CAMERA: string = 'RWE_CAMERA';
|
||||
public static ROOM_THUMBNAIL_CAMERA: string = 'RWE_ROOM_THUMBNAIL_CAMERA';
|
||||
public static ROOM_BACKGROUND_COLOR: string = 'RWE_ROOM_BACKGROUND_COLOR';
|
||||
public static CUSTOM_USER_NOTIFICATION: string = 'RWE_CUSTOM_USER_NOTIFICATION';
|
||||
public static FURNI_ACHIEVEMENT_RESOLUTION_ENGRAVING: string = 'RWE_FURNI_ACHIEVEMENT_RESOLUTION_ENGRAVING';
|
||||
public static FRIEND_FURNI_CONFIRM: string = 'RWE_FRIEND_FURNI_CONFIRM';
|
||||
public static FRIEND_FURNI_ENGRAVING: string = 'RWE_FRIEND_FURNI_ENGRAVING';
|
||||
public static HIGH_SCORE_DISPLAY: string = 'RWE_HIGH_SCORE_DISPLAY';
|
||||
public static INTERNAL_LINK: string = 'RWE_INTERNAL_LINK';
|
||||
public static CUSTOM_STACK_HEIGHT: string = 'RWE_CUSTOM_STACK_HEIGHT';
|
||||
public static YOUTUBE: string = 'RWE_YOUTUBE';
|
||||
public static RENTABLESPACE: string = 'RWE_RENTABLESPACE';
|
||||
public static VIMEO: string = 'RWE_VIMEO';
|
||||
public static ROOM_TOOLS: string = 'RWE_ROOM_TOOLS';
|
||||
public static EXTERNAL_IMAGE: string = 'RWE_EXTERNAL_IMAGE';
|
||||
public static WORD_QUIZZ: string = 'RWE_WORD_QUIZZ';
|
||||
public static UI_HELP_BUBBLE: string = 'RWE_UI_HELP_BUBBLE';
|
||||
public static ROOM_LINK: string = 'RWE_ROOM_LINK';
|
||||
public static CRAFTING: string = 'RWE_CRAFTING';
|
||||
public static ROOMGAME_CHECKERS: string = 'RWE_GAME_CHECKERS';
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
export class RoomWidgetEnumItemExtradataParameter
|
||||
{
|
||||
public static INFOSTAND_EXTRA_PARAM: string = 'RWEIEP_INFOSTAND_EXTRA_PARAM';
|
||||
public static JUKEBOX: string = 'RWEIEP_JUKEBOX';
|
||||
public static USABLE_PRODUCT: string = 'RWEIEP_USABLE_PRODUCT';
|
||||
public static SONGDISK: string = 'RWEIEP_SONGDISK';
|
||||
public static CRACKABLE_FURNI: string = 'RWEIEP_CRACKABLE_FURNI';
|
||||
public static BRANDING_OPTIONS: string = 'RWEIEP_BRANDING_OPTIONS';
|
||||
public static USABLE: string = 'RWEIEP_USABLE';
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
export class RoomWidgetFurniInfoUsagePolicyEnum
|
||||
{
|
||||
public static NOBODY: number = 0;
|
||||
public static CONTROLLER: number = 1;
|
||||
public static EVERYBODY: number = 2;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
export class SystemChatStyleEnum
|
||||
{
|
||||
public static NORMAL: number = 0;
|
||||
public static GENERIC: number = 1;
|
||||
public static BOT: number = 2;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
export * from './AvatarExpressionEnum';
|
||||
export * from './ContextMenuEnum';
|
||||
export * from './FriendWidgetEngravingWidgetTypeEnum';
|
||||
export * from './RoomWidgetEnum';
|
||||
export * from './RoomWidgetEnumItemExtradataParameter';
|
||||
export * from './RoomWidgetFurniInfoUsagePolicyEnum';
|
||||
export * from './SystemChatStyleEnum';
|
||||
@@ -0,0 +1,3 @@
|
||||
export * from './MouseEventType';
|
||||
export * from './TouchEventType';
|
||||
export * from './enums';
|
||||
Reference in New Issue
Block a user