asajs 3.0.2 → 3.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/compilers/BindingCompiler.js +458 -0
- package/dist/cjs/compilers/BindingFunctions.js +267 -0
- package/dist/cjs/compilers/Compiler.js +158 -0
- package/dist/cjs/compilers/Compress.js +55 -0
- package/dist/cjs/compilers/Config.js +138 -0
- package/dist/cjs/compilers/Encoder.js +90 -0
- package/dist/cjs/compilers/Installer.js +123 -0
- package/dist/cjs/compilers/PreCompile.js +86 -0
- package/dist/cjs/compilers/generator/GenerateDir.js +51 -0
- package/dist/cjs/compilers/generator/JsonBuilder.js +66 -0
- package/dist/cjs/compilers/generator/LangBuilder.js +65 -0
- package/dist/cjs/compilers/generator/Log.js +45 -0
- package/dist/cjs/compilers/generator/Manifest.js +63 -0
- package/dist/cjs/compilers/generator/Save.js +87 -0
- package/dist/cjs/compilers/generator/SearchFiles.js +70 -0
- package/dist/cjs/compilers/generator/Sounds.js +91 -0
- package/dist/cjs/compilers/generator/Template.js +54 -0
- package/dist/cjs/compilers/generator/UIBuilder.js +123 -0
- package/dist/cjs/compilers/reader/Audio.js +81 -0
- package/dist/cjs/compilers/reader/Color.js +65 -0
- package/dist/cjs/compilers/reader/CurrentLine.js +36 -0
- package/dist/cjs/compilers/reader/Env.js +21 -0
- package/dist/cjs/compilers/reader/GlobalVariables.js +23 -0
- package/dist/cjs/compilers/reader/Object.js +44 -0
- package/dist/cjs/compilers/reader/ReadBinding.js +67 -0
- package/dist/cjs/compilers/reader/ReadProperties.js +118 -0
- package/dist/cjs/components/AddCollectionChill.js +41 -0
- package/dist/cjs/components/Animation.js +127 -0
- package/dist/cjs/components/AnimationKeyFrame.js +49 -0
- package/dist/cjs/components/Class.js +95 -0
- package/dist/cjs/components/LocalizeText.js +59 -0
- package/dist/cjs/components/Modify.js +377 -0
- package/dist/cjs/components/Random.js +104 -0
- package/dist/cjs/components/UI.js +387 -0
- package/dist/cjs/components/Vanilla.js +57915 -0
- package/dist/cjs/index.js +291 -0
- package/dist/cjs/package.json +1 -0
- package/dist/cjs/template.js +37 -0
- package/dist/cjs/types/components/ChildIdentifier.js +16 -0
- package/dist/cjs/types/components/Identifier.js +17 -0
- package/dist/cjs/types/components/NameCallback.js +16 -0
- package/dist/cjs/types/components/UIIdentifier.js +16 -0
- package/dist/cjs/types/components/UIInterface.js +16 -0
- package/dist/cjs/types/enums/Anchor.js +39 -0
- package/dist/cjs/types/enums/AnimTypes.js +39 -0
- package/dist/cjs/types/enums/BindingCondition.js +36 -0
- package/dist/cjs/types/enums/BindingName.js +4208 -0
- package/dist/cjs/types/enums/BindingType.js +35 -0
- package/dist/cjs/types/enums/ClipDirecion.js +35 -0
- package/dist/cjs/types/enums/Collection.js +202 -0
- package/dist/cjs/types/enums/Direction.js +33 -0
- package/dist/cjs/types/enums/EasingTypes.js +62 -0
- package/dist/cjs/types/enums/EnumColor.js +37 -0
- package/dist/cjs/types/enums/FocusNavigationMode.js +34 -0
- package/dist/cjs/types/enums/FontSize.js +34 -0
- package/dist/cjs/types/enums/FontType.js +35 -0
- package/dist/cjs/types/enums/GlobalVariables.js +345 -0
- package/dist/cjs/types/enums/InputModeCondition.js +33 -0
- package/dist/cjs/types/enums/ItemAuxID.js +31 -0
- package/dist/cjs/types/enums/JsonUIArrayName.js +36 -0
- package/dist/cjs/types/enums/MappingFrom.js +81 -0
- package/dist/cjs/types/enums/MappingTo.js +248 -0
- package/dist/cjs/types/enums/MappingTypes.js +34 -0
- package/dist/cjs/types/enums/Orientation.js +32 -0
- package/dist/cjs/types/enums/Renderer.js +68 -0
- package/dist/cjs/types/enums/Rotation.js +33 -0
- package/dist/cjs/types/enums/Scope.js +32 -0
- package/dist/cjs/types/enums/TextTypes.js +33 -0
- package/dist/cjs/types/enums/TextureFileSystem.js +41 -0
- package/dist/cjs/types/enums/Types.js +57 -0
- package/dist/cjs/types/objects/Animation.js +16 -0
- package/dist/cjs/types/objects/BindingHook.js +16 -0
- package/dist/cjs/types/objects/BindingInterface.js +16 -0
- package/dist/cjs/types/objects/ButtonMapping.js +16 -0
- package/dist/cjs/types/objects/Factory.js +16 -0
- package/dist/cjs/types/objects/Installer.js +53 -0
- package/dist/cjs/types/objects/Manifest.js +56 -0
- package/dist/cjs/types/objects/Modify.js +16 -0
- package/dist/cjs/types/objects/PropertyBag.js +16 -0
- package/dist/cjs/types/objects/Sound.js +16 -0
- package/dist/cjs/types/objects/Variables.js +16 -0
- package/dist/cjs/types/objects/elements/Button.js +17 -0
- package/dist/cjs/types/objects/elements/CollectionPanel.js +17 -0
- package/dist/cjs/types/objects/elements/Custom.js +17 -0
- package/dist/cjs/types/objects/elements/Dropdown.js +17 -0
- package/dist/cjs/types/objects/elements/EditBox.js +17 -0
- package/dist/cjs/types/objects/elements/Grid.js +16 -0
- package/dist/cjs/types/objects/elements/Image.js +17 -0
- package/dist/cjs/types/objects/elements/InputPanel.js +16 -0
- package/dist/cjs/types/objects/elements/Label.js +17 -0
- package/dist/cjs/types/objects/elements/PropertiesType.js +17 -0
- package/dist/cjs/types/objects/elements/Screen.js +17 -0
- package/dist/cjs/types/objects/elements/ScrollView.js +17 -0
- package/dist/cjs/types/objects/elements/ScrollbarBox.js +17 -0
- package/dist/cjs/types/objects/elements/ScrollbarTrack.js +17 -0
- package/dist/cjs/types/objects/elements/SelectionWheel.js +17 -0
- package/dist/cjs/types/objects/elements/Slider.js +17 -0
- package/dist/cjs/types/objects/elements/SliderBox.js +17 -0
- package/dist/cjs/types/objects/elements/StackPanel.js +16 -0
- package/dist/cjs/types/objects/elements/Toggle.js +17 -0
- package/dist/cjs/types/objects/elements/TooltipTrigger.js +16 -0
- package/dist/cjs/types/objects/elements/panel.js +16 -0
- package/dist/cjs/types/objects/properties/Buttons.js +16 -0
- package/dist/cjs/types/objects/properties/CollectionIndexs.js +16 -0
- package/dist/cjs/types/objects/properties/Collections.js +16 -0
- package/dist/cjs/types/objects/properties/Controls.js +16 -0
- package/dist/cjs/types/objects/properties/Dropdowns.js +16 -0
- package/dist/cjs/types/objects/properties/Focus.js +16 -0
- package/dist/cjs/types/objects/properties/FocusContainerCustom.js +16 -0
- package/dist/cjs/types/objects/properties/Grids.js +16 -0
- package/dist/cjs/types/objects/properties/Inputs.js +16 -0
- package/dist/cjs/types/objects/properties/Layouts.js +16 -0
- package/dist/cjs/types/objects/properties/Properties.js +16 -0
- package/dist/cjs/types/objects/properties/Renderers.js +16 -0
- package/dist/cjs/types/objects/properties/Screens.js +16 -0
- package/dist/cjs/types/objects/properties/ScrollViews.js +16 -0
- package/dist/cjs/types/objects/properties/SelectionWheels.js +16 -0
- package/dist/cjs/types/objects/properties/SliderBoxs.js +16 -0
- package/dist/cjs/types/objects/properties/Sliders.js +16 -0
- package/dist/cjs/types/objects/properties/Sounds.js +16 -0
- package/dist/cjs/types/objects/properties/Specials.js +16 -0
- package/dist/cjs/types/objects/properties/Sprites.js +16 -0
- package/dist/cjs/types/objects/properties/StackPanels.js +16 -0
- package/dist/cjs/types/objects/properties/TTS.js +16 -0
- package/dist/cjs/types/objects/properties/TextEdits.js +16 -0
- package/dist/cjs/types/objects/properties/Texts.js +16 -0
- package/dist/cjs/types/objects/properties/Toggles.js +16 -0
- package/dist/cjs/types/objects/properties/TooltipTriggers.js +16 -0
- package/dist/cjs/types/objects/properties/Variables.js +16 -0
- package/dist/cjs/types/values/Any.js +16 -0
- package/dist/cjs/types/values/Binding.js +16 -0
- package/dist/cjs/types/values/Bool.js +16 -0
- package/dist/cjs/types/values/ColorVector.js +16 -0
- package/dist/cjs/types/values/ElementPath.js +16 -0
- package/dist/cjs/types/values/Hex.js +16 -0
- package/dist/cjs/types/values/Number.js +16 -0
- package/dist/cjs/types/values/RangeVector.js +16 -0
- package/dist/cjs/types/values/Str.js +16 -0
- package/dist/cjs/types/values/StringVector.js +16 -0
- package/dist/cjs/types/values/TargetElementPath.js +16 -0
- package/dist/cjs/types/values/Variable.js +16 -0
- package/dist/cjs/types/values/Vector.js +16 -0
- package/dist/esm/index.js +68470 -0
- package/dist/esm/package.json +1 -0
- package/dist/types/compilers/BindingCompiler.d.ts +44 -0
- package/dist/types/compilers/BindingFunctions.d.ts +10 -0
- package/dist/types/compilers/Compiler.d.ts +3 -0
- package/dist/types/compilers/Compress.d.ts +1 -0
- package/dist/types/compilers/Config.d.ts +95 -0
- package/dist/types/compilers/Encoder.d.ts +11 -0
- package/dist/types/compilers/Installer.d.ts +14 -0
- package/dist/types/compilers/PreCompile.d.ts +4 -0
- package/dist/types/compilers/generator/GenerateDir.d.ts +1 -0
- package/dist/types/compilers/generator/JsonBuilder.d.ts +28 -0
- package/dist/types/compilers/generator/LangBuilder.d.ts +4 -0
- package/dist/types/compilers/generator/Log.d.ts +9 -0
- package/dist/types/compilers/generator/Manifest.d.ts +21 -0
- package/dist/types/compilers/generator/Save.d.ts +16 -0
- package/dist/types/compilers/generator/SearchFiles.d.ts +11 -0
- package/dist/types/compilers/generator/Sounds.d.ts +5 -0
- package/dist/types/compilers/generator/Template.d.ts +1 -0
- package/dist/types/compilers/generator/UIBuilder.d.ts +9 -0
- package/dist/types/compilers/reader/Audio.d.ts +1 -0
- package/dist/types/compilers/reader/Color.d.ts +5 -0
- package/dist/types/compilers/reader/CurrentLine.d.ts +1 -0
- package/dist/types/compilers/reader/Env.d.ts +1 -0
- package/dist/types/compilers/reader/GlobalVariables.d.ts +1 -0
- package/dist/types/compilers/reader/Object.d.ts +11 -0
- package/dist/types/compilers/reader/ReadBinding.d.ts +6 -0
- package/dist/types/compilers/reader/ReadProperties.d.ts +3 -0
- package/dist/types/components/AddCollectionChill.d.ts +6 -0
- package/dist/types/components/Animation.d.ts +15 -0
- package/dist/types/components/AnimationKeyFrame.d.ts +10 -0
- package/dist/types/components/Class.d.ts +68 -0
- package/dist/types/components/LocalizeText.d.ts +21 -0
- package/dist/types/components/Modify.d.ts +30 -0
- package/dist/types/components/Random.d.ts +20 -0
- package/dist/types/components/UI.d.ts +89 -0
- package/dist/types/components/Vanilla.d.ts +19729 -0
- package/dist/types/index.d.ts +136 -0
- package/dist/types/template.d.ts +4 -0
- package/dist/types/types/components/ChildIdentifier.d.ts +11 -0
- package/dist/types/types/components/Identifier.d.ts +4 -0
- package/dist/types/types/components/NameCallback.d.ts +3 -0
- package/dist/types/types/components/UIIdentifier.d.ts +4 -0
- package/dist/types/types/components/UIInterface.d.ts +16 -0
- package/dist/types/types/enums/Anchor.d.ts +11 -0
- package/dist/types/types/enums/AnimTypes.d.ts +11 -0
- package/dist/types/types/enums/BindingCondition.d.ts +8 -0
- package/dist/types/types/enums/BindingName.d.ts +4180 -0
- package/dist/types/types/enums/BindingType.d.ts +7 -0
- package/dist/types/types/enums/ClipDirecion.d.ts +7 -0
- package/dist/types/types/enums/Collection.d.ts +174 -0
- package/dist/types/types/enums/Direction.d.ts +5 -0
- package/dist/types/types/enums/EasingTypes.d.ts +34 -0
- package/dist/types/types/enums/EnumColor.d.ts +9 -0
- package/dist/types/types/enums/FocusNavigationMode.d.ts +6 -0
- package/dist/types/types/enums/FontSize.d.ts +6 -0
- package/dist/types/types/enums/FontType.d.ts +7 -0
- package/dist/types/types/enums/GlobalVariables.d.ts +317 -0
- package/dist/types/types/enums/InputModeCondition.d.ts +5 -0
- package/dist/types/types/enums/ItemAuxID.d.ts +3 -0
- package/dist/types/types/enums/JsonUIArrayName.d.ts +7 -0
- package/dist/types/types/enums/MappingFrom.d.ts +53 -0
- package/dist/types/types/enums/MappingTo.d.ts +220 -0
- package/dist/types/types/enums/MappingTypes.d.ts +6 -0
- package/dist/types/types/enums/Orientation.d.ts +4 -0
- package/dist/types/types/enums/Renderer.d.ts +40 -0
- package/dist/types/types/enums/Rotation.d.ts +5 -0
- package/dist/types/types/enums/Scope.d.ts +4 -0
- package/dist/types/types/enums/TextTypes.d.ts +5 -0
- package/dist/types/types/enums/TextureFileSystem.d.ts +13 -0
- package/dist/types/types/enums/Types.d.ts +29 -0
- package/dist/types/types/objects/Animation.d.ts +36 -0
- package/dist/types/types/objects/BindingHook.d.ts +1 -0
- package/dist/types/types/objects/BindingInterface.d.ts +21 -0
- package/dist/types/types/objects/ButtonMapping.d.ts +18 -0
- package/dist/types/types/objects/Factory.d.ts +2 -0
- package/dist/types/types/objects/Installer.d.ts +26 -0
- package/dist/types/types/objects/Manifest.d.ts +74 -0
- package/dist/types/types/objects/Modify.d.ts +52 -0
- package/dist/types/types/objects/PropertyBag.d.ts +2 -0
- package/dist/types/types/objects/Sound.d.ts +8 -0
- package/dist/types/types/objects/Variables.d.ts +1 -0
- package/dist/types/types/objects/elements/Button.d.ts +4 -0
- package/dist/types/types/objects/elements/CollectionPanel.d.ts +4 -0
- package/dist/types/types/objects/elements/Custom.d.ts +5 -0
- package/dist/types/types/objects/elements/Dropdown.d.ts +4 -0
- package/dist/types/types/objects/elements/EditBox.d.ts +4 -0
- package/dist/types/types/objects/elements/Grid.d.ts +4 -0
- package/dist/types/types/objects/elements/Image.d.ts +4 -0
- package/dist/types/types/objects/elements/InputPanel.d.ts +7 -0
- package/dist/types/types/objects/elements/Label.d.ts +4 -0
- package/dist/types/types/objects/elements/PropertiesType.d.ts +45 -0
- package/dist/types/types/objects/elements/Screen.d.ts +4 -0
- package/dist/types/types/objects/elements/ScrollView.d.ts +5 -0
- package/dist/types/types/objects/elements/ScrollbarBox.d.ts +4 -0
- package/dist/types/types/objects/elements/ScrollbarTrack.d.ts +4 -0
- package/dist/types/types/objects/elements/SelectionWheel.d.ts +4 -0
- package/dist/types/types/objects/elements/Slider.d.ts +4 -0
- package/dist/types/types/objects/elements/SliderBox.d.ts +5 -0
- package/dist/types/types/objects/elements/StackPanel.d.ts +7 -0
- package/dist/types/types/objects/elements/Toggle.d.ts +4 -0
- package/dist/types/types/objects/elements/TooltipTrigger.d.ts +8 -0
- package/dist/types/types/objects/elements/panel.d.ts +6 -0
- package/dist/types/types/objects/properties/Buttons.d.ts +5 -0
- package/dist/types/types/objects/properties/CollectionIndexs.d.ts +4 -0
- package/dist/types/types/objects/properties/Collections.d.ts +6 -0
- package/dist/types/types/objects/properties/Controls.d.ts +27 -0
- package/dist/types/types/objects/properties/Dropdowns.d.ts +6 -0
- package/dist/types/types/objects/properties/Focus.d.ts +28 -0
- package/dist/types/types/objects/properties/FocusContainerCustom.d.ts +5 -0
- package/dist/types/types/objects/properties/Grids.d.ts +15 -0
- package/dist/types/types/objects/properties/Inputs.d.ts +13 -0
- package/dist/types/types/objects/properties/Layouts.d.ts +35 -0
- package/dist/types/types/objects/properties/Properties.d.ts +27 -0
- package/dist/types/types/objects/properties/Renderers.d.ts +5 -0
- package/dist/types/types/objects/properties/Screens.d.ts +23 -0
- package/dist/types/types/objects/properties/ScrollViews.d.ts +17 -0
- package/dist/types/types/objects/properties/SelectionWheels.d.ts +13 -0
- package/dist/types/types/objects/properties/SliderBoxs.d.ts +6 -0
- package/dist/types/types/objects/properties/Sliders.d.ts +23 -0
- package/dist/types/types/objects/properties/Sounds.d.ts +10 -0
- package/dist/types/types/objects/properties/Specials.d.ts +60 -0
- package/dist/types/types/objects/properties/Sprites.d.ts +33 -0
- package/dist/types/types/objects/properties/StackPanels.d.ts +5 -0
- package/dist/types/types/objects/properties/TTS.d.ts +24 -0
- package/dist/types/types/objects/properties/TextEdits.d.ts +19 -0
- package/dist/types/types/objects/properties/Texts.d.ts +26 -0
- package/dist/types/types/objects/properties/Toggles.d.ts +24 -0
- package/dist/types/types/objects/properties/TooltipTriggers.d.ts +7 -0
- package/dist/types/types/objects/properties/Variables.d.ts +3 -0
- package/dist/types/types/values/Any.d.ts +4 -0
- package/dist/types/types/values/Binding.d.ts +2 -0
- package/dist/types/types/values/Bool.d.ts +2 -0
- package/dist/types/types/values/ColorVector.d.ts +6 -0
- package/dist/types/types/values/ElementPath.d.ts +2 -0
- package/dist/types/types/values/Hex.d.ts +1 -0
- package/dist/types/types/values/Number.d.ts +4 -0
- package/dist/types/types/values/RangeVector.d.ts +5 -0
- package/dist/types/types/values/Str.d.ts +2 -0
- package/dist/types/types/values/StringVector.d.ts +6 -0
- package/dist/types/types/values/TargetElementPath.d.ts +1 -0
- package/dist/types/types/values/Variable.d.ts +1 -0
- package/dist/types/types/values/Vector.d.ts +5 -0
- package/package.json +4 -4
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var GlobalVariables_exports = {};
|
|
20
|
+
__export(GlobalVariables_exports, {
|
|
21
|
+
GlobalVariables: () => GlobalVariables
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(GlobalVariables_exports);
|
|
24
|
+
var GlobalVariables = /* @__PURE__ */ ((GlobalVariables2) => {
|
|
25
|
+
GlobalVariables2["GenericButtonTextColor"] = "$generic_button_text_color";
|
|
26
|
+
GlobalVariables2["LightButtonDefaultTextColor"] = "$light_button_default_text_color";
|
|
27
|
+
GlobalVariables2["LightButtonHoverTextColor"] = "$light_button_hover_text_color";
|
|
28
|
+
GlobalVariables2["LightButtonPressedTextColor"] = "$light_button_pressed_text_color";
|
|
29
|
+
GlobalVariables2["LightButtonLockedTextColor"] = "$light_button_locked_text_color";
|
|
30
|
+
GlobalVariables2["LightToggleDefaultTextColor"] = "$light_toggle_default_text_color";
|
|
31
|
+
GlobalVariables2["LightToggleHoverTextColor"] = "$light_toggle_hover_text_color";
|
|
32
|
+
GlobalVariables2["LightToggleCheckedDefaultTextColor"] = "$light_toggle_checked_default_text_color";
|
|
33
|
+
GlobalVariables2["LightToggleCheckedHoverTextColor"] = "$light_toggle_checked_hover_text_color";
|
|
34
|
+
GlobalVariables2["DarkButtonDefaultTextColor"] = "$dark_button_default_text_color";
|
|
35
|
+
GlobalVariables2["DarkButtonHoverTextColor"] = "$dark_button_hover_text_color";
|
|
36
|
+
GlobalVariables2["DarkButtonPressedTextColor"] = "$dark_button_pressed_text_color";
|
|
37
|
+
GlobalVariables2["DarkButtonLockedTextColor"] = "$dark_button_locked_text_color";
|
|
38
|
+
GlobalVariables2["DarkToggleDefaultTextColor"] = "$dark_toggle_default_text_color";
|
|
39
|
+
GlobalVariables2["DarkToggleHoverTextColor"] = "$dark_toggle_hover_text_color";
|
|
40
|
+
GlobalVariables2["DarkToggleCheckedDefaultTextColor"] = "$dark_toggle_checked_default_text_color";
|
|
41
|
+
GlobalVariables2["DarkToggleCheckedHoverTextColor"] = "$dark_toggle_checked_hover_text_color";
|
|
42
|
+
GlobalVariables2["LightButtonSecondaryDefaultTextColor"] = "$light_button_secondary_default_text_color";
|
|
43
|
+
GlobalVariables2["LightButtonSecondaryHoverTextColor"] = "$light_button_secondary_hover_text_color";
|
|
44
|
+
GlobalVariables2["LightButtonSecondaryPressedTextColor"] = "$light_button_secondary_pressed_text_color";
|
|
45
|
+
GlobalVariables2["LightButtonSecondaryLockedTextColor"] = "$light_button_secondary_locked_text_color";
|
|
46
|
+
GlobalVariables2["DarkButtonSecondaryDefaultTextColor"] = "$dark_button_secondary_default_text_color";
|
|
47
|
+
GlobalVariables2["DarkButtonSecondaryHoverTextColor"] = "$dark_button_secondary_hover_text_color";
|
|
48
|
+
GlobalVariables2["DarkButtonSecondaryPressedTextColor"] = "$dark_button_secondary_pressed_text_color";
|
|
49
|
+
GlobalVariables2["DarkButtonSecondaryLockedTextColor"] = "$dark_button_secondary_locked_text_color";
|
|
50
|
+
GlobalVariables2["DarkBgContrastButtonDefaultTextColor"] = "$dark_bg_contrast_button_default_text_color";
|
|
51
|
+
GlobalVariables2["TitleTextColor"] = "$title_text_color";
|
|
52
|
+
GlobalVariables2["PocketTitleTextColor"] = "$pocket_title_text_color";
|
|
53
|
+
GlobalVariables2["MainHeaderTextColor"] = "$main_header_text_color";
|
|
54
|
+
GlobalVariables2["SubHeaderTextColor"] = "$sub_header_text_color";
|
|
55
|
+
GlobalVariables2["TabUncheckedTextColor"] = "$tab_unchecked_text_color";
|
|
56
|
+
GlobalVariables2["TabUncheckedHoverTextColor"] = "$tab_unchecked_hover_text_color";
|
|
57
|
+
GlobalVariables2["TabUncheckedLockedTextColor"] = "$tab_unchecked_locked_text_color";
|
|
58
|
+
GlobalVariables2["TabUncheckedLockedHoverTextColor"] = "$tab_unchecked_locked_hover_text_color";
|
|
59
|
+
GlobalVariables2["TabCheckedTextColor"] = "$tab_checked_text_color";
|
|
60
|
+
GlobalVariables2["TabCheckedHoverTextColor"] = "$tab_checked_hover_text_color";
|
|
61
|
+
GlobalVariables2["TabCheckedLockedTextColor"] = "$tab_checked_locked_text_color";
|
|
62
|
+
GlobalVariables2["TabCheckedLockedHoverTextColor"] = "$tab_checked_locked_hover_text_color";
|
|
63
|
+
GlobalVariables2["TabSecondaryUncheckedTextColor"] = "$tab_secondary_unchecked_text_color";
|
|
64
|
+
GlobalVariables2["TabSecondaryUncheckedHoverTextColor"] = "$tab_secondary_unchecked_hover_text_color";
|
|
65
|
+
GlobalVariables2["TabSecondaryUncheckedLockedTextColor"] = "$tab_secondary_unchecked_locked_text_color";
|
|
66
|
+
GlobalVariables2["TabSecondaryUncheckedLockedHoverTextColor"] = "$tab_secondary_unchecked_locked_hover_text_color";
|
|
67
|
+
GlobalVariables2["TabSecondaryCheckedTextColor"] = "$tab_secondary_checked_text_color";
|
|
68
|
+
GlobalVariables2["TabSecondaryCheckedHoverTextColor"] = "$tab_secondary_checked_hover_text_color";
|
|
69
|
+
GlobalVariables2["TabSecondaryCheckedLockedTextColor"] = "$tab_secondary_checked_locked_text_color";
|
|
70
|
+
GlobalVariables2["TabSecondaryCheckedLockedHoverTextColor"] = "$tab_secondary_checked_locked_hover_text_color";
|
|
71
|
+
GlobalVariables2["TabUncheckedGlyphColor"] = "$tab_unchecked_glyph_color";
|
|
72
|
+
GlobalVariables2["TabUncheckedHoverGlyphColor"] = "$tab_unchecked_hover_glyph_color";
|
|
73
|
+
GlobalVariables2["TabUncheckedLockedGlyphColor"] = "$tab_unchecked_locked_glyph_color";
|
|
74
|
+
GlobalVariables2["TabUncheckedLockedHoverGlyphColor"] = "$tab_unchecked_locked_hover_glyph_color";
|
|
75
|
+
GlobalVariables2["TabCheckedGlyphColor"] = "$tab_checked_glyph_color";
|
|
76
|
+
GlobalVariables2["TabCheckedHoverGlyphColor"] = "$tab_checked_hover_glyph_color";
|
|
77
|
+
GlobalVariables2["TabCheckedLockedGlyphColor"] = "$tab_checked_locked_glyph_color";
|
|
78
|
+
GlobalVariables2["TabCheckedLockedHoverGlyphColor"] = "$tab_checked_locked_hover_glyph_color";
|
|
79
|
+
GlobalVariables2["ItemStackCountColor"] = "$item_stack_count_color";
|
|
80
|
+
GlobalVariables2["SelectedItemStackCountColor"] = "$selected_item_stack_count_color";
|
|
81
|
+
GlobalVariables2["ItemHoverTextColor"] = "$item_hover_text_color";
|
|
82
|
+
GlobalVariables2["PocketItemDetailsColor"] = "$pocket_item_details_color";
|
|
83
|
+
GlobalVariables2["ToolTipText"] = "$tool_tip_text";
|
|
84
|
+
GlobalVariables2["StructureEditorText"] = "$structure_editor_text";
|
|
85
|
+
GlobalVariables2["TextBoxTextColor"] = "$text_box_text_color";
|
|
86
|
+
GlobalVariables2["TextBoxLockedTextColor"] = "$text_box_locked_text_color";
|
|
87
|
+
GlobalVariables2["PlaceHolderTextColor"] = "$place_holder_text_color";
|
|
88
|
+
GlobalVariables2["TitleCommandTextColor"] = "$title_command_text_color";
|
|
89
|
+
GlobalVariables2["SubtitleCommandTextColor"] = "$subtitle_command_text_color";
|
|
90
|
+
GlobalVariables2["BossNameTextColor"] = "$boss_name_text_color";
|
|
91
|
+
GlobalVariables2["BodyTextColor"] = "$body_text_color";
|
|
92
|
+
GlobalVariables2["PortfolioBodyTextColor"] = "$portfolio_body_text_color";
|
|
93
|
+
GlobalVariables2["PortfolioCloseColor"] = "$portfolio_close_color";
|
|
94
|
+
GlobalVariables2["DarkBodyTextColor"] = "$dark_body_text_color";
|
|
95
|
+
GlobalVariables2["DarkGridItemTextColor"] = "$dark_grid_item_text_color";
|
|
96
|
+
GlobalVariables2["LightGridItemTextColor"] = "$light_grid_item_text_color";
|
|
97
|
+
GlobalVariables2["EnchantingRunesColor"] = "$enchanting_runes_color";
|
|
98
|
+
GlobalVariables2["EnchantingRunesFailColor"] = "$enchanting_runes_fail_color";
|
|
99
|
+
GlobalVariables2["EnchantingCostSuccessColor"] = "$enchanting_cost_success_color";
|
|
100
|
+
GlobalVariables2["EnchantingCostFailColor"] = "$enchanting_cost_fail_color";
|
|
101
|
+
GlobalVariables2["BeaconPowerTitleTextColor"] = "$beacon_power_title_text_color";
|
|
102
|
+
GlobalVariables2["AnvilCostSuccessTextColor"] = "$anvil_cost_success_text_color";
|
|
103
|
+
GlobalVariables2["AnvilCostFailTextColor"] = "$anvil_cost_fail_text_color";
|
|
104
|
+
GlobalVariables2["SmithingTableCostSuccessTextColor"] = "$smithing_table_cost_success_text_color";
|
|
105
|
+
GlobalVariables2["SmithingTableCostFailTextColor"] = "$smithing_table_cost_fail_text_color";
|
|
106
|
+
GlobalVariables2["GamepadButtonGenericTextColor"] = "$gamepad_button_generic_text_color";
|
|
107
|
+
GlobalVariables2["GamepadAButtonTextColor"] = "$gamepad_a_button_text_color";
|
|
108
|
+
GlobalVariables2["GamepadBButtonTextColor"] = "$gamepad_b_button_text_color";
|
|
109
|
+
GlobalVariables2["GamepadXButtonTextColor"] = "$gamepad_x_button_text_color";
|
|
110
|
+
GlobalVariables2["GamepadYButtonTextColor"] = "$gamepad_y_button_text_color";
|
|
111
|
+
GlobalVariables2["GamepadDescriptionTextColor"] = "$gamepad_description_text_color";
|
|
112
|
+
GlobalVariables2["KeyboardHelperKeys"] = "$keyboard_helper_keys";
|
|
113
|
+
GlobalVariables2["AchievementTextColor"] = "$achievement_text_color";
|
|
114
|
+
GlobalVariables2["XblSigninTextColor"] = "$xbl_signin_text_color";
|
|
115
|
+
GlobalVariables2["ToastTextColor"] = "$toast_text_color";
|
|
116
|
+
GlobalVariables2["ChatTextColor"] = "$chat_text_color";
|
|
117
|
+
GlobalVariables2["HudGamertagColor"] = "$hud_gamertag_color";
|
|
118
|
+
GlobalVariables2["RealmsTextColor"] = "$realms_text_color";
|
|
119
|
+
GlobalVariables2["DeathTextColor"] = "$death_text_color";
|
|
120
|
+
GlobalVariables2["LoadingTextColor"] = "$loading_text_color";
|
|
121
|
+
GlobalVariables2["ExperienceTextColor"] = "$experience_text_color";
|
|
122
|
+
GlobalVariables2["FeedTextColor"] = "$feed_text_color";
|
|
123
|
+
GlobalVariables2["WarningTextColor"] = "$warning_text_color";
|
|
124
|
+
GlobalVariables2["ErrorTextColor"] = "$error_text_color";
|
|
125
|
+
GlobalVariables2["AlertLabelTextColor"] = "$alert_label_text_color";
|
|
126
|
+
GlobalVariables2["DebugStoreTextColor"] = "$debug_store_text_color";
|
|
127
|
+
GlobalVariables2["XAxisTextColor"] = "$x_axis_text_color";
|
|
128
|
+
GlobalVariables2["YAxisTextColor"] = "$y_axis_text_color";
|
|
129
|
+
GlobalVariables2["ZAxisTextColor"] = "$z_axis_text_color";
|
|
130
|
+
GlobalVariables2["BookPageNumberColor"] = "$book_page_number_color";
|
|
131
|
+
GlobalVariables2["BookPageTextColor"] = "$book_page_text_color";
|
|
132
|
+
GlobalVariables2["BookTitleColor"] = "$book_title_color";
|
|
133
|
+
GlobalVariables2["BookTitlePlaceholderColor"] = "$book_title_placeholder_color";
|
|
134
|
+
GlobalVariables2["BookTitleLabelColor"] = "$book_title_label_color";
|
|
135
|
+
GlobalVariables2["BookAuthorColor"] = "$book_author_color";
|
|
136
|
+
GlobalVariables2["BookAuthorLabelColor"] = "$book_author_label_color";
|
|
137
|
+
GlobalVariables2["BookWarningColor"] = "$book_warning_color";
|
|
138
|
+
GlobalVariables2["NpcDialogTextColor"] = "$npc_dialog_text_color";
|
|
139
|
+
GlobalVariables2["NpcUrlTextColor"] = "$npc_url_text_color";
|
|
140
|
+
GlobalVariables2["WtcPackDescTextColor"] = "$wtc_pack_desc_text_color";
|
|
141
|
+
GlobalVariables2["ItemLockNotificationTextColor"] = "$item_lock_notification_text_color";
|
|
142
|
+
GlobalVariables2["MobileDataIconTextColor"] = "$mobile_data_icon_text_color";
|
|
143
|
+
GlobalVariables2["OptionDescriptionTextColor"] = "$option_description_text_color";
|
|
144
|
+
GlobalVariables2["LightGlyphDefaultColor"] = "$light_glyph_default_color";
|
|
145
|
+
GlobalVariables2["LightGlyphHoverColor"] = "$light_glyph_hover_color";
|
|
146
|
+
GlobalVariables2["LightGlyphPressedColor"] = "$light_glyph_pressed_color";
|
|
147
|
+
GlobalVariables2["LightGlyphLockedColor"] = "$light_glyph_locked_color";
|
|
148
|
+
GlobalVariables2["LightGlyphToggleDefaultColor"] = "$light_glyph_toggle_default_color";
|
|
149
|
+
GlobalVariables2["LightGlyphToggleHoverColor"] = "$light_glyph_toggle_hover_color";
|
|
150
|
+
GlobalVariables2["LightGlyphToggleCheckedDefaultColor"] = "$light_glyph_toggle_checked_default_color";
|
|
151
|
+
GlobalVariables2["LightGlyphToggleCheckedHoverColor"] = "$light_glyph_toggle_checked_hover_color";
|
|
152
|
+
GlobalVariables2["DarkGlyphDefaultColor"] = "$dark_glyph_default_color";
|
|
153
|
+
GlobalVariables2["DarkGlyphHoverColor"] = "$dark_glyph_hover_color";
|
|
154
|
+
GlobalVariables2["DarkGlyphPressedColor"] = "$dark_glyph_pressed_color";
|
|
155
|
+
GlobalVariables2["DarkGlyphLockedColor"] = "$dark_glyph_locked_color";
|
|
156
|
+
GlobalVariables2["DarkGlyphToggleDefaultColor"] = "$dark_glyph_toggle_default_color";
|
|
157
|
+
GlobalVariables2["DarkGlyphToggleHoverColor"] = "$dark_glyph_toggle_hover_color";
|
|
158
|
+
GlobalVariables2["DarkGlyphToggleCheckedDefaultColor"] = "$dark_glyph_toggle_checked_default_color";
|
|
159
|
+
GlobalVariables2["DarkGlyphToggleCheckedHoverColor"] = "$dark_glyph_toggle_checked_hover_color";
|
|
160
|
+
GlobalVariables2["LightBorderDefaultColor"] = "$light_border_default_color";
|
|
161
|
+
GlobalVariables2["LightBorderHoverColor"] = "$light_border_hover_color";
|
|
162
|
+
GlobalVariables2["LightBorderPressedColor"] = "$light_border_pressed_color";
|
|
163
|
+
GlobalVariables2["LightBorderLockedColor"] = "$light_border_locked_color";
|
|
164
|
+
GlobalVariables2["LightBorderToggleDefaultColor"] = "$light_border_toggle_default_color";
|
|
165
|
+
GlobalVariables2["LightBorderToggleHoverColor"] = "$light_border_toggle_hover_color";
|
|
166
|
+
GlobalVariables2["DarkBorderDefaultColor"] = "$dark_border_default_color";
|
|
167
|
+
GlobalVariables2["DarkBorderHoverColor"] = "$dark_border_hover_color";
|
|
168
|
+
GlobalVariables2["DarkBorderPressedColor"] = "$dark_border_pressed_color";
|
|
169
|
+
GlobalVariables2["DarkBorderLockedColor"] = "$dark_border_locked_color";
|
|
170
|
+
GlobalVariables2["DarkBorderToggleDefaultColor"] = "$dark_border_toggle_default_color";
|
|
171
|
+
GlobalVariables2["DarkBorderToggleHoverColor"] = "$dark_border_toggle_hover_color";
|
|
172
|
+
GlobalVariables2["NonInteractBorderColor"] = "$non_interact_border_color";
|
|
173
|
+
GlobalVariables2["RealmsPlusBorderColor"] = "$realms_plus_border_color";
|
|
174
|
+
GlobalVariables2["CsbBorderColor"] = "$csb_border_color";
|
|
175
|
+
GlobalVariables2["CsubTextColor"] = "$csub_text_color";
|
|
176
|
+
GlobalVariables2["SliderDefaultBorderColor"] = "$slider_default_border_color";
|
|
177
|
+
GlobalVariables2["SliderHoverBorderColor"] = "$slider_hover_border_color";
|
|
178
|
+
GlobalVariables2["BossHealthBarColor"] = "$boss_health_bar_color";
|
|
179
|
+
GlobalVariables2["DayOneExperienceImportProgressBarEmpty"] = "$day_one_experience_import_progress_bar_empty";
|
|
180
|
+
GlobalVariables2["DayOneExperienceImportProgressBarFill"] = "$day_one_experience_import_progress_bar_fill";
|
|
181
|
+
GlobalVariables2["WorldDiskspaceBedrockFill"] = "$world_diskspace_bedrock_fill";
|
|
182
|
+
GlobalVariables2["WorldDiskspaceEditionsFill"] = "$world_diskspace_editions_fill";
|
|
183
|
+
GlobalVariables2["WorldDiskspaceEmpty"] = "$world_diskspace_empty";
|
|
184
|
+
GlobalVariables2["ServersScreenshot"] = "$servers_screenshot";
|
|
185
|
+
GlobalVariables2["ServersCurrentScreenshot"] = "$servers_current_screenshot";
|
|
186
|
+
GlobalVariables2["JukeboxTextColor"] = "$jukebox_text_color";
|
|
187
|
+
GlobalVariables2["0ColorFormat"] = "$0_color_format";
|
|
188
|
+
GlobalVariables2["1ColorFormat"] = "$1_color_format";
|
|
189
|
+
GlobalVariables2["2ColorFormat"] = "$2_color_format";
|
|
190
|
+
GlobalVariables2["3ColorFormat"] = "$3_color_format";
|
|
191
|
+
GlobalVariables2["4ColorFormat"] = "$4_color_format";
|
|
192
|
+
GlobalVariables2["5ColorFormat"] = "$5_color_format";
|
|
193
|
+
GlobalVariables2["6ColorFormat"] = "$6_color_format";
|
|
194
|
+
GlobalVariables2["7ColorFormat"] = "$7_color_format";
|
|
195
|
+
GlobalVariables2["8ColorFormat"] = "$8_color_format";
|
|
196
|
+
GlobalVariables2["9ColorFormat"] = "$9_color_format";
|
|
197
|
+
GlobalVariables2["AColorFormat"] = "$a_color_format";
|
|
198
|
+
GlobalVariables2["BColorFormat"] = "$b_color_format";
|
|
199
|
+
GlobalVariables2["CColorFormat"] = "$c_color_format";
|
|
200
|
+
GlobalVariables2["DColorFormat"] = "$d_color_format";
|
|
201
|
+
GlobalVariables2["EColorFormat"] = "$e_color_format";
|
|
202
|
+
GlobalVariables2["FColorFormat"] = "$f_color_format";
|
|
203
|
+
GlobalVariables2["MaterialQuartzColor"] = "$material_quartz_color";
|
|
204
|
+
GlobalVariables2["MaterialIronColor"] = "$material_iron_color";
|
|
205
|
+
GlobalVariables2["MaterialNetheriteColor"] = "$material_netherite_color";
|
|
206
|
+
GlobalVariables2["MaterialRedstoneColor"] = "$material_redstone_color";
|
|
207
|
+
GlobalVariables2["MaterialCopperColor"] = "$material_copper_color";
|
|
208
|
+
GlobalVariables2["MaterialGoldColor"] = "$material_gold_color";
|
|
209
|
+
GlobalVariables2["MaterialEmeraldColor"] = "$material_emerald_color";
|
|
210
|
+
GlobalVariables2["MaterialDiamondColor"] = "$material_diamond_color";
|
|
211
|
+
GlobalVariables2["MaterialLapisColor"] = "$material_lapis_color";
|
|
212
|
+
GlobalVariables2["MaterialAmethystColor"] = "$material_amethyst_color";
|
|
213
|
+
GlobalVariables2["MaterialResinColor"] = "$material_resin_color";
|
|
214
|
+
GlobalVariables2["DropdownDividerColor"] = "$dropdown_divider_color";
|
|
215
|
+
GlobalVariables2["TransparentDarkGradientStartColor"] = "$transparent_dark_gradient_start_color";
|
|
216
|
+
GlobalVariables2["TransparentDarkGradientEndColor"] = "$transparent_dark_gradient_end_color";
|
|
217
|
+
GlobalVariables2["TransitionTimePushSize"] = "$transition_time_push_size";
|
|
218
|
+
GlobalVariables2["TransitionTimePopSize"] = "$transition_time_pop_size";
|
|
219
|
+
GlobalVariables2["TransitionTimePush"] = "$transition_time_push";
|
|
220
|
+
GlobalVariables2["TransitionTimePop"] = "$transition_time_pop";
|
|
221
|
+
GlobalVariables2["ContainerTransitionTimePush"] = "$container_transition_time_push";
|
|
222
|
+
GlobalVariables2["ContainerTransitionTimePop"] = "$container_transition_time_pop";
|
|
223
|
+
GlobalVariables2["LoadingBarTransition"] = "$loading_bar_transition";
|
|
224
|
+
GlobalVariables2["PlayerNameColor"] = "$player_name_color";
|
|
225
|
+
GlobalVariables2["ObjectiveTitleColor"] = "$objective_title_color";
|
|
226
|
+
GlobalVariables2["PlayerScoreColor"] = "$player_score_color";
|
|
227
|
+
GlobalVariables2["PlayerListScoreColor"] = "$player_list_score_color";
|
|
228
|
+
GlobalVariables2["PlayerListRankColor"] = "$player_list_rank_color";
|
|
229
|
+
GlobalVariables2["DarkPanelColor"] = "$dark_panel_color";
|
|
230
|
+
GlobalVariables2["RedGrayPanelColor"] = "$red_gray_panel_color";
|
|
231
|
+
GlobalVariables2["AlertLabelBackgroundColor"] = "$alert_label_background_color";
|
|
232
|
+
GlobalVariables2["DropdownRadioBackgroundUncheckedColor"] = "$dropdown_radio_background_unchecked_color";
|
|
233
|
+
GlobalVariables2["DropdownRadioBackgroundCheckedColor"] = "$dropdown_radio_background_checked_color";
|
|
234
|
+
GlobalVariables2["DropdownRadioBackgroundHoverColor"] = "$dropdown_radio_background_hover_color";
|
|
235
|
+
GlobalVariables2["ProtonColor"] = "$proton_color";
|
|
236
|
+
GlobalVariables2["ElectronColor"] = "$electron_color";
|
|
237
|
+
GlobalVariables2["NeutronColor"] = "$neutron_color";
|
|
238
|
+
GlobalVariables2["CoinColor"] = "$coin_color";
|
|
239
|
+
GlobalVariables2["CoinOfferTextColor"] = "$coin_offer_text_color";
|
|
240
|
+
GlobalVariables2["CoinHeaderTextColor"] = "$coin_header_text_color";
|
|
241
|
+
GlobalVariables2["StoreAuthorTextColor"] = "$store_author_text_color";
|
|
242
|
+
GlobalVariables2["StoreRealmsTextColor"] = "$store_realms_text_color";
|
|
243
|
+
GlobalVariables2["StoreRealms-background-deep-blue"] = "$store_realms-background-deep-blue";
|
|
244
|
+
GlobalVariables2["StoreRealms-guidelines-deep-blue-5"] = "$store_realms-guidelines-deep-blue-5";
|
|
245
|
+
GlobalVariables2["StoreRealms-guidelines-deep-blue-6"] = "$store_realms-guidelines-deep-blue-6";
|
|
246
|
+
GlobalVariables2["StoreSalesBannerTextColor"] = "$store_sales_banner_text_color";
|
|
247
|
+
GlobalVariables2["StoreProductDetailStrikethruColor"] = "$store_product_detail_strikethru_color";
|
|
248
|
+
GlobalVariables2["StorePlayButtonHover"] = "$store_play_button_hover";
|
|
249
|
+
GlobalVariables2["NewOfferIconTextColor"] = "$new_offer_icon_text_color";
|
|
250
|
+
GlobalVariables2["StoreOfferTypeIconColor"] = "$store_offer_type_icon_color";
|
|
251
|
+
GlobalVariables2["StoreRatingTextPanelColor"] = "$store_rating_text_panel_color";
|
|
252
|
+
GlobalVariables2["StoreWhiteTextColor"] = "$store_white_text_color";
|
|
253
|
+
GlobalVariables2["StoreCsbGoldTextColor"] = "$store_csb_gold_text_color";
|
|
254
|
+
GlobalVariables2["StoreCsbExpirationTextColor"] = "$store_csb_expiration_text_color";
|
|
255
|
+
GlobalVariables2["StoreDarkGreyTextColor"] = "$store_dark_grey_text_color";
|
|
256
|
+
GlobalVariables2["StoreLightGreyTextColor"] = "$store_light_grey_text_color";
|
|
257
|
+
GlobalVariables2["CarouselUnselected"] = "$carousel_unselected";
|
|
258
|
+
GlobalVariables2["CarouselSelected"] = "$carousel_selected";
|
|
259
|
+
GlobalVariables2["CoinScreenCalloutBevelColor"] = "$coin_screen_callout_bevel_color";
|
|
260
|
+
GlobalVariables2["StoreCsbTextColor"] = "$store_csb_text_color";
|
|
261
|
+
GlobalVariables2["CsbUpsellButtonTextColor"] = "$csb_upsell_button_text_color";
|
|
262
|
+
GlobalVariables2["CsbUpsellPink-1"] = "$csb_upsell_pink-1";
|
|
263
|
+
GlobalVariables2["CsbUpsellPink-3"] = "$csb_upsell_pink-3";
|
|
264
|
+
GlobalVariables2["CsbUpsellPink-6"] = "$csb_upsell_pink-6";
|
|
265
|
+
GlobalVariables2["CsbUpsellOfferBackground"] = "$csb_upsell_offer_background";
|
|
266
|
+
GlobalVariables2["CsbPanelBackground"] = "$csb_panel_background";
|
|
267
|
+
GlobalVariables2["CsbSecondaryPanelBackground"] = "$csb_secondary_panel_background";
|
|
268
|
+
GlobalVariables2["SidebarBgColor"] = "$sidebar_bg_color";
|
|
269
|
+
GlobalVariables2["SidebarExpandedSectionBgColor"] = "$sidebar_expanded_section_bg_color";
|
|
270
|
+
GlobalVariables2["SidebarVerboseExitBgColor"] = "$sidebar_verbose_exit_bg_color";
|
|
271
|
+
GlobalVariables2["SidebarDefaultOptionColor"] = "$sidebar_default_option_color";
|
|
272
|
+
GlobalVariables2["SidebarCheckedOptionColor"] = "$sidebar_checked_option_color";
|
|
273
|
+
GlobalVariables2["SidebarSelectedBarColor"] = "$sidebar_selected_bar_color";
|
|
274
|
+
GlobalVariables2["SidebarDropdownExpandedColor"] = "$sidebar_dropdown_expanded_color";
|
|
275
|
+
GlobalVariables2["SidebarOptionSelectedColor"] = "$sidebar_option_selected_color";
|
|
276
|
+
GlobalVariables2["SidebarDefaultHoverColor"] = "$sidebar_default_hover_color";
|
|
277
|
+
GlobalVariables2["SidebarVerboseExpandBorderColor"] = "$sidebar_verbose_expand_border_color";
|
|
278
|
+
GlobalVariables2["TradeTierNameColor"] = "$trade_tier_name_color";
|
|
279
|
+
GlobalVariables2["TradeTierNameLockedColor"] = "$trade_tier_name_locked_color";
|
|
280
|
+
GlobalVariables2["TradeLockColor"] = "$trade_lock_color";
|
|
281
|
+
GlobalVariables2["EnchantmentButtonDefaultTextColor"] = "$enchantment_button_default_text_color";
|
|
282
|
+
GlobalVariables2["NestedDefaultAlpha"] = "$nested_default_alpha";
|
|
283
|
+
GlobalVariables2["NestedDefaultColor"] = "$nested_default_color";
|
|
284
|
+
GlobalVariables2["NestedDarkContentDefaultColor"] = "$nested_dark_content_default_color";
|
|
285
|
+
GlobalVariables2["NestedDarkContentHoverColor"] = "$nested_dark_content_hover_color";
|
|
286
|
+
GlobalVariables2["NestedDarkContentPressedColor"] = "$nested_dark_content_pressed_color";
|
|
287
|
+
GlobalVariables2["NestedDarkLabelDefaultColor"] = "$nested_dark_label_default_color";
|
|
288
|
+
GlobalVariables2["NestedDarkLabelHoverColor"] = "$nested_dark_label_hover_color";
|
|
289
|
+
GlobalVariables2["NestedDarkLabelPressedColor"] = "$nested_dark_label_pressed_color";
|
|
290
|
+
GlobalVariables2["NestedTransparentLabelAlpha"] = "$nested_transparent_label_alpha";
|
|
291
|
+
GlobalVariables2["NestedTransparentLabelDefaultColor"] = "$nested_transparent_label_default_color";
|
|
292
|
+
GlobalVariables2["NestedTransparentLabelDefaultPressedColor"] = "$nested_transparent_label_default_pressed_color";
|
|
293
|
+
GlobalVariables2["NestedTransparentGreenLabelColor"] = "$nested_transparent_green_label_color";
|
|
294
|
+
GlobalVariables2["NestedTransparentGreenLabelPressedColor"] = "$nested_transparent_green_label_pressed_color";
|
|
295
|
+
GlobalVariables2["NestedTransparentPurpleLabelColor"] = "$nested_transparent_purple_label_color";
|
|
296
|
+
GlobalVariables2["NestedTransparentPurpleLabelPressedColor"] = "$nested_transparent_purple_label_pressed_color";
|
|
297
|
+
GlobalVariables2["NestedContentUnfocusedOverlayAlpha"] = "$nested_content_unfocused_overlay_alpha";
|
|
298
|
+
GlobalVariables2["NestedOverlayClickableAlpha"] = "$nested_overlay_clickable_alpha";
|
|
299
|
+
GlobalVariables2["NestedOnePixelPadding"] = "$nested_one_pixel_padding";
|
|
300
|
+
GlobalVariables2["NestedNoPadding"] = "$nested_no_padding";
|
|
301
|
+
GlobalVariables2["DarkRedirectButtonHoverColor"] = "$dark_redirect_button_hover_color";
|
|
302
|
+
GlobalVariables2["DarkRedirectSeparatorColor"] = "$dark_redirect_separator_color";
|
|
303
|
+
GlobalVariables2["RarityCommonBgColor"] = "$rarity_common_bg_color";
|
|
304
|
+
GlobalVariables2["RarityUncommonBgColor"] = "$rarity_uncommon_bg_color";
|
|
305
|
+
GlobalVariables2["RarityRareBgColor"] = "$rarity_rare_bg_color";
|
|
306
|
+
GlobalVariables2["RarityEpicBgColor"] = "$rarity_epic_bg_color";
|
|
307
|
+
GlobalVariables2["RarityLegendaryBgColor"] = "$rarity_legendary_bg_color";
|
|
308
|
+
GlobalVariables2["DressingRoomSaleBannerTextColor"] = "$dressing_room_sale_banner_text_color";
|
|
309
|
+
GlobalVariables2["DressingRoomBottomSectionColor"] = "$dressing_room_bottom_section_color";
|
|
310
|
+
GlobalVariables2["DressingRoomBottomSectionMidBar"] = "$dressing_room_bottom_section_mid_bar";
|
|
311
|
+
GlobalVariables2["DressingRoomDarkBgColor"] = "$dressing_room_dark_bg_color";
|
|
312
|
+
GlobalVariables2["DressingRoomSemiDarkBgColor"] = "$dressing_room_semi_dark_bg_color";
|
|
313
|
+
GlobalVariables2["DressingRoomDarkButtonColor"] = "$dressing_room_dark_button_color";
|
|
314
|
+
GlobalVariables2["DressingRoomLighterButtonColor"] = "$dressing_room_lighter_button_color";
|
|
315
|
+
GlobalVariables2["DressingRoomRightSideDefaultTextColor"] = "$dressing_room_right_side_default_text_color";
|
|
316
|
+
GlobalVariables2["DressingRoomSizeDefaultTextColor"] = "$dressing_room_size_default_text_color";
|
|
317
|
+
GlobalVariables2["DressingRoomColorTitle"] = "$dressing_room_color_title";
|
|
318
|
+
GlobalVariables2["DressingRoomSideLockedTextColor"] = "$dressing_room_side_locked_text_color";
|
|
319
|
+
GlobalVariables2["DressingRoomRightSideDarkTextColor"] = "$dressing_room_right_side_dark_text_color";
|
|
320
|
+
GlobalVariables2["DressingRoomBackgroundAlpha"] = "$dressing_room_background_alpha";
|
|
321
|
+
GlobalVariables2["DressingRoomFullScreenPopupBackgroundAlpha"] = "$dressing_room_full_screen_popup_background_alpha";
|
|
322
|
+
GlobalVariables2["DressingRoomProfileTitleBarAlpha"] = "$dressing_room_profile_title_bar_alpha";
|
|
323
|
+
GlobalVariables2["DressingRoomPanelAlpha"] = "$dressing_room_panel_alpha";
|
|
324
|
+
GlobalVariables2["DressingRoomSubCategorySeperatorColor"] = "$dressing_room_sub_category_seperator_color";
|
|
325
|
+
GlobalVariables2["DressingRoomSubcategoryButtonHoverColor"] = "$dressing_room_subcategory_button_hover_color";
|
|
326
|
+
GlobalVariables2["DressingRoomPopupBackground"] = "$dressing_room_popup_background";
|
|
327
|
+
GlobalVariables2["DressingRoomEndPieceSectionLine"] = "$dressing_room_end_piece_section_line";
|
|
328
|
+
GlobalVariables2["DressingRoomHoverColor"] = "$dressing_room_hover_color";
|
|
329
|
+
GlobalVariables2["ProfileCreateCharacterBackgroundColor"] = "$profile_create_character_background_color";
|
|
330
|
+
GlobalVariables2["ProfileCreateCharacterSelectedColor"] = "$profile_create_character_selected_color";
|
|
331
|
+
GlobalVariables2["ProfileCreateCharacterUnselectedColor"] = "$profile_create_character_unselected_color";
|
|
332
|
+
GlobalVariables2["ProfileCreateCharacterGettingStartedTitleColor"] = "$profile_create_character_getting_started_title_color";
|
|
333
|
+
GlobalVariables2["DressingRoomSkinPickerSelectedColor"] = "$dressing_room_skin_picker_selected_color";
|
|
334
|
+
GlobalVariables2["DressingRoomSkinPickerSelectedPressedColor"] = "$dressing_room_skin_picker_selected_pressed_color";
|
|
335
|
+
GlobalVariables2["DressingRoomSkinPickerEquippedBorderColor"] = "$dressing_room_skin_picker_equipped_border_color";
|
|
336
|
+
GlobalVariables2["DressingRoomSkinPickerDarkBgColor"] = "$dressing_room_skin_picker_dark_bg_color";
|
|
337
|
+
GlobalVariables2["EmoteScreenGamepadInstructionColors"] = "$emote_screen_gamepad_instruction_colors";
|
|
338
|
+
GlobalVariables2["RealmsplusExclamationMarkColor"] = "$realmsplus_exclamation_mark_color";
|
|
339
|
+
GlobalVariables2["BundleInfoDescriptionColor"] = "$bundle_info_description_color";
|
|
340
|
+
return GlobalVariables2;
|
|
341
|
+
})(GlobalVariables || {});
|
|
342
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
343
|
+
0 && (module.exports = {
|
|
344
|
+
GlobalVariables
|
|
345
|
+
});
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var InputModeCondition_exports = {};
|
|
20
|
+
__export(InputModeCondition_exports, {
|
|
21
|
+
InputModeCondition: () => InputModeCondition
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(InputModeCondition_exports);
|
|
24
|
+
var InputModeCondition = /* @__PURE__ */ ((InputModeCondition2) => {
|
|
25
|
+
InputModeCondition2["NotGaze"] = "not_gaze";
|
|
26
|
+
InputModeCondition2["NotGamepad"] = "not_gamepad";
|
|
27
|
+
InputModeCondition2["GamePadNadNotGaze"] = "gamepad_and_not_gaze";
|
|
28
|
+
return InputModeCondition2;
|
|
29
|
+
})(InputModeCondition || {});
|
|
30
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
31
|
+
0 && (module.exports = {
|
|
32
|
+
InputModeCondition
|
|
33
|
+
});
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var ItemAuxID_exports = {};
|
|
20
|
+
__export(ItemAuxID_exports, {
|
|
21
|
+
ItemAuxID: () => ItemAuxID
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(ItemAuxID_exports);
|
|
24
|
+
var ItemAuxID = /* @__PURE__ */ ((ItemAuxID2) => {
|
|
25
|
+
ItemAuxID2[ItemAuxID2[": Not Found"] = 0] = ": Not Found";
|
|
26
|
+
return ItemAuxID2;
|
|
27
|
+
})(ItemAuxID || {});
|
|
28
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
29
|
+
0 && (module.exports = {
|
|
30
|
+
ItemAuxID
|
|
31
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var JsonUIArrayName_exports = {};
|
|
20
|
+
__export(JsonUIArrayName_exports, {
|
|
21
|
+
ArrayName: () => ArrayName
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(JsonUIArrayName_exports);
|
|
24
|
+
var ArrayName = /* @__PURE__ */ ((ArrayName2) => {
|
|
25
|
+
ArrayName2["Controls"] = "controls";
|
|
26
|
+
ArrayName2["Bindings"] = "bindings";
|
|
27
|
+
ArrayName2["Anims"] = "anims";
|
|
28
|
+
ArrayName2["Variables"] = "variables";
|
|
29
|
+
ArrayName2["ButtonMappings"] = "button_mappings";
|
|
30
|
+
return ArrayName2;
|
|
31
|
+
})(ArrayName || {});
|
|
32
|
+
;
|
|
33
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
34
|
+
0 && (module.exports = {
|
|
35
|
+
ArrayName
|
|
36
|
+
});
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var MappingFrom_exports = {};
|
|
20
|
+
__export(MappingFrom_exports, {
|
|
21
|
+
MappingFrom: () => MappingFrom
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(MappingFrom_exports);
|
|
24
|
+
var MappingFrom = /* @__PURE__ */ ((MappingFrom2) => {
|
|
25
|
+
MappingFrom2["MenuExit"] = "button.menu_exit";
|
|
26
|
+
MappingFrom2["MenuCancel"] = "button.menu_cancel";
|
|
27
|
+
MappingFrom2["MenuInventoryCancel"] = "button.menu_inventory_cancel ";
|
|
28
|
+
MappingFrom2["MenuOk"] = "button.menu_ok";
|
|
29
|
+
MappingFrom2["MenuSelect"] = "button.menu_select";
|
|
30
|
+
MappingFrom2["ControllerSelect"] = "button.controller_select";
|
|
31
|
+
MappingFrom2["MenuSecondarySelect"] = "button.menu_secondary_select";
|
|
32
|
+
MappingFrom2["ControllerSecondarySelect"] = "button.controller_secondary_select";
|
|
33
|
+
MappingFrom2["ControllerSecondarySelectLeft"] = "button.controller_secondary_select_left";
|
|
34
|
+
MappingFrom2["ControllerSecondarySelectRight"] = "button.controller_secondary_select_right";
|
|
35
|
+
MappingFrom2["ControllerStart"] = "button.controller_start";
|
|
36
|
+
MappingFrom2["MenuUp"] = "button.menu_up";
|
|
37
|
+
MappingFrom2["MenuDown"] = "button.menu_down";
|
|
38
|
+
MappingFrom2["MenuLeft"] = "button.menu_left";
|
|
39
|
+
MappingFrom2["MenuRight"] = "button.menu_right";
|
|
40
|
+
MappingFrom2["MenuTabLeft"] = "button.menu_tab_left";
|
|
41
|
+
MappingFrom2["MenuTabRight"] = "button.menu_tab_right";
|
|
42
|
+
MappingFrom2["MenuAlternateTabLeft"] = "button.menu_alternate_tab_left";
|
|
43
|
+
MappingFrom2["MenuAlternateTabRight"] = "button.menu_alternate_tab_right";
|
|
44
|
+
MappingFrom2["MenuAutocomplete"] = "button.menu_autocomplete";
|
|
45
|
+
MappingFrom2["MenuAutocompleteBack"] = "button.menu_autocomplete_back";
|
|
46
|
+
MappingFrom2["ControllerAutocomplete"] = "button.controller_autocomplete";
|
|
47
|
+
MappingFrom2["ControllerAutocompleteBack"] = "button.controller_autocomplete_back";
|
|
48
|
+
MappingFrom2["MenuEditUp"] = "button.menu_textedit_up";
|
|
49
|
+
MappingFrom2["MenuEditDown"] = "button.menu_textedit_down";
|
|
50
|
+
MappingFrom2["ControllerEditUp"] = "button.controller_textedit_u";
|
|
51
|
+
MappingFrom2["ControllerEditDown"] = "button.controller_textedit_down";
|
|
52
|
+
MappingFrom2["MenuAutoPlace"] = "button.menu_auto_place";
|
|
53
|
+
MappingFrom2["MenuInventoryDrop"] = "button.menu_inventory_drop";
|
|
54
|
+
MappingFrom2["MenuInventoryDropAll"] = "button.menu_inventory_drop_all";
|
|
55
|
+
MappingFrom2["MenuClear"] = "button.menu_clear";
|
|
56
|
+
MappingFrom2["Chat"] = "button.chat";
|
|
57
|
+
MappingFrom2["MobEffects"] = "button.mobeffects";
|
|
58
|
+
MappingFrom2["keyEmote"] = "key.emote";
|
|
59
|
+
MappingFrom2["Slot0"] = "button.slot0";
|
|
60
|
+
MappingFrom2["Slot1"] = "button.slot1";
|
|
61
|
+
MappingFrom2["Slot2"] = "button.slot2";
|
|
62
|
+
MappingFrom2["Slot3"] = "button.slot3";
|
|
63
|
+
MappingFrom2["Slot4"] = "button.slot4";
|
|
64
|
+
MappingFrom2["Slot5"] = "button.slot5";
|
|
65
|
+
MappingFrom2["Slot6"] = "button.slot6";
|
|
66
|
+
MappingFrom2["Slot7"] = "button.slot7";
|
|
67
|
+
MappingFrom2["Slot8"] = "button.slot8";
|
|
68
|
+
MappingFrom2["Slot9"] = "button.slot9";
|
|
69
|
+
MappingFrom2["InventoryRight"] = "button.inventory_right";
|
|
70
|
+
MappingFrom2["InventoryLeft"] = "button.inventory_left";
|
|
71
|
+
MappingFrom2["Scoreboard"] = "button.scoreboard";
|
|
72
|
+
MappingFrom2["HideGui"] = "button.hide_gui";
|
|
73
|
+
MappingFrom2["HideTooltips"] = "button.hide_tooltips";
|
|
74
|
+
MappingFrom2["HidePaperdoll"] = "button.hide_paperdoll";
|
|
75
|
+
MappingFrom2["MenuVRRealign"] = "button.menu_vr_realign";
|
|
76
|
+
return MappingFrom2;
|
|
77
|
+
})(MappingFrom || {});
|
|
78
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
79
|
+
0 && (module.exports = {
|
|
80
|
+
MappingFrom
|
|
81
|
+
});
|