mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-24 17:23:50 +02:00
* refactor: dialogs * fix: storeAvatarImage * FriendLog.vue * FriendLog.vue * FriendLog.vue * GameLog.vue * fix: next day button jumping to the wrong date * sync master * fix: launchGame * Notification.vue * Feed.vue * Search.vue * Profile.vue * PlayerList.vue * Login.vue * utils * update dialog * del gameLog.pug * fix * fix: group role cannot be displayed currently * fix: "Hide Friends in Same Instance" hides players in unrelated private instances (#1210) * fix * fix: "Hide Friends in Same Instance" does not work when "Split Favorite Friends" is enabled * fix Notification.vue message * fix: deleteFavoriteNoConfirm * fix: feed status style * fix: infinite loading when deleting note * fix: private players will not be hidden when 'Hide Friends in Same Instance', and 'Hide Friends in Same Instance' will not work when 'Split Favorite Friends'
107 lines
1.8 KiB
JavaScript
107 lines
1.8 KiB
JavaScript
const photonEmojis = [
|
|
'Angry',
|
|
'Blushing',
|
|
'Crying',
|
|
'Frown',
|
|
'Hand Wave',
|
|
'Hang Ten',
|
|
'In Love',
|
|
'Jack O Lantern',
|
|
'Kiss',
|
|
'Laugh',
|
|
'Skull',
|
|
'Smile',
|
|
'Spooky Ghost',
|
|
'Stoic',
|
|
'Sunglasses',
|
|
'Thinking',
|
|
'Thumbs Down',
|
|
'Thumbs Up',
|
|
'Tongue Out',
|
|
'Wow',
|
|
'Arrow Point',
|
|
"Can't see",
|
|
'Hourglass',
|
|
'Keyboard',
|
|
'No Headphones',
|
|
'No Mic',
|
|
'Portal',
|
|
'Shush',
|
|
'Bats',
|
|
'Cloud',
|
|
'Fire',
|
|
'Snow Fall',
|
|
'Snowball',
|
|
'Splash',
|
|
'Web',
|
|
'Beer',
|
|
'Candy',
|
|
'Candy Cane',
|
|
'Candy Corn',
|
|
'Champagne',
|
|
'Drink',
|
|
'Gingerbread',
|
|
'Ice Cream',
|
|
'Pineapple',
|
|
'Pizza',
|
|
'Tomato',
|
|
'Beachball',
|
|
'Coal',
|
|
'Confetti',
|
|
'Gift',
|
|
'Gifts',
|
|
'Life Ring',
|
|
'Mistletoe',
|
|
'Money',
|
|
'Neon Shades',
|
|
'Sun Lotion',
|
|
'Boo',
|
|
'Broken Heart',
|
|
'Exclamation',
|
|
'Go',
|
|
'Heart',
|
|
'Music Note',
|
|
'Question',
|
|
'Stop',
|
|
'Zzz'
|
|
];
|
|
|
|
const photonEventType = [
|
|
'MeshVisibility',
|
|
'AnimationFloat',
|
|
'AnimationBool',
|
|
'AnimationTrigger',
|
|
'AudioTrigger',
|
|
'PlayAnimation',
|
|
'SendMessage',
|
|
'SetParticlePlaying',
|
|
'TeleportPlayer',
|
|
'RunConsoleCommand',
|
|
'SetGameObjectActive',
|
|
'SetWebPanelURI',
|
|
'SetWebPanelVolume',
|
|
'SpawnObject',
|
|
'SendRPC',
|
|
'ActivateCustomTrigger',
|
|
'DestroyObject',
|
|
'SetLayer',
|
|
'SetMaterial',
|
|
'AddHealth',
|
|
'AddDamage',
|
|
'SetComponentActive',
|
|
'AnimationInt',
|
|
'AnimationIntAdd',
|
|
'AnimationIntSubtract',
|
|
'AnimationIntMultiply',
|
|
'AnimationIntDivide',
|
|
'AddVelocity',
|
|
'SetVelocity',
|
|
'AddAngularVelocity',
|
|
'SetAngularVelocity',
|
|
'AddForce',
|
|
'SetUIText',
|
|
'CallUdonMethod'
|
|
];
|
|
|
|
export { photonEmojis, photonEventType };
|