├── .github └── funding.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md.meta ├── Documentation.meta ├── Documentation ├── 1. Installation.md ├── 2. Runtime.md ├── 3. UIResources.md ├── 4. UIVisualRoot.md ├── 5. UIAnimations.md ├── Images.meta └── Images │ ├── Attributes_ScriptableObject_Foldout.png │ ├── CreateModuleMenuItem.png │ ├── CreateModuleWindow.png │ ├── GameResourcesScriptableObject.png │ ├── GameSettingsScriptableObject.png │ ├── SelectMenuToSelectSettings.png │ ├── SelectMenuToSelectUI.png │ ├── UIMainMenuSetup.png │ ├── UISettings_Sorting.png │ └── UITagsAndLayers.png ├── Examples.meta ├── Examples ├── CoreUI_ModuleOverview.unity ├── CoreUI_ModuleOverview.unity.meta ├── CoreUI_ResponsiveOverview.unity ├── CoreUI_ResponsiveOverview.unity.meta ├── CoreUI_UITabWindow.unity ├── CoreUI_UITabWindow.unity.meta ├── CoreUI_UITabWindow_ListItems.unity ├── CoreUI_UITabWindow_ListItems.unity.meta ├── CoreUI_UIWindow_MultipleVisualRoots.unity ├── CoreUI_UIWindow_MultipleVisualRoots.unity.meta ├── Prefabs.meta ├── Prefabs │ ├── CoreUI_CustomUITabWindow.prefab │ ├── CoreUI_CustomUITabWindow.prefab.meta │ ├── CoreUI_CustomUITabWindow_ListItems.prefab │ ├── CoreUI_CustomUITabWindow_ListItems.prefab.meta │ ├── CoreUI_CustomUIWindow.prefab │ ├── CoreUI_CustomUIWindow.prefab.meta │ ├── CoreUI_CustomUIWindow_MultipleVisualRoots.prefab │ ├── CoreUI_CustomUIWindow_MultipleVisualRoots.prefab.meta │ ├── CoreUI_CustomUIWindow_Responsive.prefab │ └── CoreUI_CustomUIWindow_Responsive.prefab.meta ├── Scripts.meta └── Scripts │ ├── CoreUI_CustomUITabWindow.cs │ ├── CoreUI_CustomUITabWindow.cs.meta │ ├── CoreUI_CustomUIWindow.cs │ ├── CoreUI_CustomUIWindow.cs.meta │ ├── CoreUI_ExampleOverview.cs │ ├── CoreUI_ExampleOverview.cs.meta │ ├── ExampleUtils.cs │ └── ExampleUtils.cs.meta ├── LICENSE ├── LICENSE.meta ├── README.md ├── README.md.meta ├── SDK.meta ├── SDK ├── Modules.meta ├── Modules │ ├── Core.meta │ ├── Core │ │ ├── Audio.meta │ │ ├── Audio │ │ │ ├── AudioClipDefinition_OnUIButtonClick.asset │ │ │ ├── AudioClipDefinition_OnUIButtonClick.asset.meta │ │ │ ├── Clips.meta │ │ │ └── Clips │ │ │ │ ├── Click_Standard_00.wav │ │ │ │ └── Click_Standard_00.wav.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── GameRuntime.prefab │ │ │ └── GameRuntime.prefab.meta │ │ ├── Prototype.meta │ │ ├── Prototype │ │ │ ├── CustomPostProcessData.asset │ │ │ ├── CustomPostProcessData.asset.meta │ │ │ ├── PostProcessingVolume.asset │ │ │ ├── PostProcessingVolume.asset.meta │ │ │ ├── Test World & Obstacles.prefab │ │ │ └── Test World & Obstacles.prefab.meta │ │ ├── Readme.asset │ │ ├── Readme.asset.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── GameAudioResourcesCollection.asset │ │ │ ├── GameAudioResourcesCollection.asset.meta │ │ │ ├── GameDependenciesCollection.asset │ │ │ ├── GameDependenciesCollection.asset.meta │ │ │ ├── GameSettingsCollection.asset │ │ │ └── GameSettingsCollection.asset.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Attributes.meta │ │ │ ├── Attributes │ │ │ ├── ButtonAttribute.cs │ │ │ ├── ButtonAttribute.cs.meta │ │ │ ├── ConditionalHideAttribute.cs │ │ │ ├── ConditionalHideAttribute.cs.meta │ │ │ ├── DrawerAttribute.cs │ │ │ ├── DrawerAttribute.cs.meta │ │ │ ├── EColor.cs │ │ │ ├── EColor.cs.meta │ │ │ ├── EConditionOperator.cs │ │ │ ├── EConditionOperator.cs.meta │ │ │ ├── Expandable.cs │ │ │ ├── Expandable.cs.meta │ │ │ ├── HorizontalLineAttribute.cs │ │ │ ├── HorizontalLineAttribute.cs.meta │ │ │ ├── IOGTAttribute.cs │ │ │ ├── IOGTAttribute.cs.meta │ │ │ ├── Metas.meta │ │ │ ├── Metas │ │ │ │ ├── BoxGroupAttribute.cs │ │ │ │ ├── BoxGroupAttribute.cs.meta │ │ │ │ ├── EnableIfAttributeBase.cs │ │ │ │ ├── EnableIfAttributeBase.cs.meta │ │ │ │ ├── FoldoutAttribute.cs │ │ │ │ ├── FoldoutAttribute.cs.meta │ │ │ │ ├── IGroupAttribute.cs │ │ │ │ ├── IGroupAttribute.cs.meta │ │ │ │ ├── LabelAttribute.cs │ │ │ │ ├── LabelAttribute.cs.meta │ │ │ │ ├── MetaAttribute.cs │ │ │ │ ├── MetaAttribute.cs.meta │ │ │ │ ├── OnValueChangedAttribute.cs │ │ │ │ ├── OnValueChangedAttribute.cs.meta │ │ │ │ ├── ReadOnlyAttribute.cs │ │ │ │ ├── ReadOnlyAttribute.cs.meta │ │ │ │ ├── ShowIfAttributeBase.cs │ │ │ │ └── ShowIfAttributeBase.cs.meta │ │ │ ├── ReorderableListAttribute.cs │ │ │ ├── ReorderableListAttribute.cs.meta │ │ │ ├── ResizableTextAreaAttribute.cs │ │ │ ├── ResizableTextAreaAttribute.cs.meta │ │ │ ├── ShowNativePropertyAttribute.cs │ │ │ ├── ShowNativePropertyAttribute.cs.meta │ │ │ ├── ShowNonSerializedFieldAttribute.cs │ │ │ ├── ShowNonSerializedFieldAttribute.cs.meta │ │ │ ├── SpecialCaseDrawerAttribute.cs │ │ │ ├── SpecialCaseDrawerAttribute.cs.meta │ │ │ ├── Validators.meta │ │ │ └── Validators │ │ │ │ ├── MaxValueAttribute.cs │ │ │ │ ├── MaxValueAttribute.cs.meta │ │ │ │ ├── MinValueAttribute.cs │ │ │ │ ├── MinValueAttribute.cs.meta │ │ │ │ ├── RequiredAttribute.cs │ │ │ │ ├── RequiredAttribute.cs.meta │ │ │ │ ├── ValidateInputAttribute.cs │ │ │ │ ├── ValidateInputAttribute.cs.meta │ │ │ │ ├── ValidatorAttributes.cs │ │ │ │ └── ValidatorAttributes.cs.meta │ │ │ ├── Audio.meta │ │ │ ├── Audio │ │ │ ├── AudioClipDefinition.cs │ │ │ ├── AudioClipDefinition.cs.meta │ │ │ ├── AudioRuntime.cs │ │ │ ├── AudioRuntime.cs.meta │ │ │ ├── GameAudioResources.cs │ │ │ ├── GameAudioResources.cs.meta │ │ │ ├── GameAudioResourcesCollection.cs │ │ │ ├── GameAudioResourcesCollection.cs.meta │ │ │ ├── SmartAudioSource.cs │ │ │ └── SmartAudioSource.cs.meta │ │ │ ├── BaseBehaviour.cs │ │ │ ├── BaseBehaviour.cs.meta │ │ │ ├── BaseGameCharacterController.cs │ │ │ ├── BaseGameCharacterController.cs.meta │ │ │ ├── BaseResourcesCollection.cs │ │ │ ├── BaseResourcesCollection.cs.meta │ │ │ ├── BaseScriptableObject.cs │ │ │ ├── BaseScriptableObject.cs.meta │ │ │ ├── BodyContainer.cs │ │ │ ├── BodyContainer.cs.meta │ │ │ ├── CameraController.cs │ │ │ ├── CameraController.cs.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── ButtonUtility.cs │ │ │ ├── ButtonUtility.cs.meta │ │ │ ├── CreateModule.meta │ │ │ ├── CreateModule │ │ │ │ ├── CreateModuleWindow.cs │ │ │ │ ├── CreateModuleWindow.cs.meta │ │ │ │ ├── TemplateResourceDefinitions.txt │ │ │ │ ├── TemplateResourceDefinitions.txt.meta │ │ │ │ ├── TemplateResourcesCollection.txt │ │ │ │ ├── TemplateResourcesCollection.txt.meta │ │ │ │ ├── TemplateRuntime.txt │ │ │ │ ├── TemplateRuntime.txt.meta │ │ │ │ ├── TemplateSettingsCollection.txt │ │ │ │ ├── TemplateSettingsCollection.txt.meta │ │ │ │ ├── TemplateTemporalPrefabMakingScript.txt │ │ │ │ └── TemplateTemporalPrefabMakingScript.txt.meta │ │ │ ├── Drawers.meta │ │ │ ├── Drawers │ │ │ │ ├── ConditionalHidePropertyDrawer.cs │ │ │ │ ├── ConditionalHidePropertyDrawer.cs.meta │ │ │ │ ├── ExpandablePropertyDrawer.cs │ │ │ │ ├── ExpandablePropertyDrawer.cs.meta │ │ │ │ ├── HorizontalLineDecoratorDrawer.cs │ │ │ │ ├── HorizontalLineDecoratorDrawer.cs.meta │ │ │ │ ├── MaxValuePropertyValidator.cs │ │ │ │ ├── MaxValuePropertyValidator.cs.meta │ │ │ │ ├── MinValuePropertyValidator.cs │ │ │ │ ├── MinValuePropertyValidator.cs.meta │ │ │ │ ├── PropertyDrawerBase.cs │ │ │ │ ├── PropertyDrawerBase.cs.meta │ │ │ │ ├── ReorderableListPropertyDrawer.cs │ │ │ │ ├── ReorderableListPropertyDrawer.cs.meta │ │ │ │ ├── ResizableTextAreaPropertyDrawer.cs │ │ │ │ ├── ResizableTextAreaPropertyDrawer.cs.meta │ │ │ │ ├── SpecialCasePropertyDrawerBase.cs │ │ │ │ └── SpecialCasePropertyDrawerBase.cs.meta │ │ │ ├── EditorExtensions.cs │ │ │ ├── EditorExtensions.cs.meta │ │ │ ├── OGTEditorGUI.cs │ │ │ ├── OGTEditorGUI.cs.meta │ │ │ ├── OGTInspector.cs │ │ │ ├── OGTInspector.cs.meta │ │ │ ├── OGTSettingsProvider.cs │ │ │ ├── OGTSettingsProvider.cs.meta │ │ │ ├── PropertyUtility.cs │ │ │ ├── PropertyUtility.cs.meta │ │ │ ├── PropertyValidatorBase.cs │ │ │ ├── PropertyValidatorBase.cs.meta │ │ │ ├── ReflectionUtility.cs │ │ │ ├── ReflectionUtility.cs.meta │ │ │ ├── RequiredPropertyValidator.cs │ │ │ ├── RequiredPropertyValidator.cs.meta │ │ │ ├── SavedBool.cs │ │ │ ├── SavedBool.cs.meta │ │ │ ├── ValidateInputPropertyValidator.cs │ │ │ └── ValidateInputPropertyValidator.cs.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ ├── AudioExtensions.cs │ │ │ ├── AudioExtensions.cs.meta │ │ │ ├── ColorExtensions.cs │ │ │ ├── ColorExtensions.cs.meta │ │ │ ├── ComponentExtensions.cs │ │ │ ├── ComponentExtensions.cs.meta │ │ │ ├── ComputerSizingExtensions.cs │ │ │ ├── ComputerSizingExtensions.cs.meta │ │ │ ├── DebugExtensions.cs │ │ │ ├── DebugExtensions.cs.meta │ │ │ ├── DictionaryExtensions.cs │ │ │ ├── DictionaryExtensions.cs.meta │ │ │ ├── DoTweenExtensions.cs │ │ │ ├── DoTweenExtensions.cs.meta │ │ │ ├── EnumExtensions.cs │ │ │ ├── EnumExtensions.cs.meta │ │ │ ├── GameObjectExtensions.cs │ │ │ ├── GameObjectExtensions.cs.meta │ │ │ ├── ListExtensions.cs │ │ │ ├── ListExtensions.cs.meta │ │ │ ├── MonoBehaviourExtensions.cs │ │ │ ├── MonoBehaviourExtensions.cs.meta │ │ │ ├── NumericExtensions.cs │ │ │ ├── NumericExtensions.cs.meta │ │ │ ├── StringExtensions.cs │ │ │ ├── StringExtensions.cs.meta │ │ │ ├── TMPExtensions.cs │ │ │ ├── TMPExtensions.cs.meta │ │ │ ├── TransformExtensions.cs │ │ │ ├── TransformExtensions.cs.meta │ │ │ ├── Vector3Extensions.cs │ │ │ └── Vector3Extensions.cs.meta │ │ │ ├── GameDependenciesCollection.cs │ │ │ ├── GameDependenciesCollection.cs.meta │ │ │ ├── GameModulePackageReadme.cs │ │ │ ├── GameModulePackageReadme.cs.meta │ │ │ ├── GameResources.cs │ │ │ ├── GameResources.cs.meta │ │ │ ├── GameRuntime.cs │ │ │ ├── GameRuntime.cs.meta │ │ │ ├── GameSettings.cs │ │ │ ├── GameSettings.cs.meta │ │ │ ├── GameSettingsCollection.cs │ │ │ ├── GameSettingsCollection.cs.meta │ │ │ ├── IGameDependency.cs │ │ │ ├── IGameDependency.cs.meta │ │ │ ├── MonoSingletonSelfGenerated.cs │ │ │ ├── MonoSingletonSelfGenerated.cs.meta │ │ │ ├── MonoSingletonUnmanaged.cs │ │ │ ├── MonoSingletonUnmanaged.cs.meta │ │ │ ├── OGTConstants.cs │ │ │ ├── OGTConstants.cs.meta │ │ │ ├── ScriptableAnimation.cs │ │ │ ├── ScriptableAnimation.cs.meta │ │ │ ├── Utils.meta │ │ │ ├── Utils │ │ │ ├── PrefabUtilities.cs │ │ │ ├── PrefabUtilities.cs.meta │ │ │ ├── WebUtils.cs │ │ │ └── WebUtils.cs.meta │ │ │ ├── VisualRoot.cs │ │ │ └── VisualRoot.cs.meta │ ├── CoreUI.meta │ ├── CoreUI │ │ ├── Animations.meta │ │ ├── Animations │ │ │ ├── UIAnimation_FadeIn.asset │ │ │ ├── UIAnimation_FadeIn.asset.meta │ │ │ ├── UIAnimation_FadeInFromBottom.asset │ │ │ ├── UIAnimation_FadeInFromBottom.asset.meta │ │ │ ├── UIAnimation_FadeInFromRight.asset │ │ │ ├── UIAnimation_FadeInFromRight.asset.meta │ │ │ ├── UIAnimation_FadeInFromTop.asset │ │ │ ├── UIAnimation_FadeInFromTop.asset.meta │ │ │ ├── UIAnimation_FadeInScaleIn.asset │ │ │ ├── UIAnimation_FadeInScaleIn.asset.meta │ │ │ ├── UIAnimation_FadeOut.asset │ │ │ ├── UIAnimation_FadeOut.asset.meta │ │ │ ├── UIAnimation_FadeOutScaleOut.asset │ │ │ ├── UIAnimation_FadeOutScaleOut.asset.meta │ │ │ ├── UIAnimation_FadeOutToBottom.asset │ │ │ ├── UIAnimation_FadeOutToBottom.asset.meta │ │ │ ├── UIAnimation_FadeOutToRight.asset │ │ │ ├── UIAnimation_FadeOutToRight.asset.meta │ │ │ ├── UIAnimation_FadeOutToTop.asset │ │ │ ├── UIAnimation_FadeOutToTop.asset.meta │ │ │ ├── UIAnimation_None.asset │ │ │ ├── UIAnimation_None.asset.meta │ │ │ ├── UIAnimation_PunchScale.asset │ │ │ └── UIAnimation_PunchScale.asset.meta │ │ ├── Art.meta │ │ ├── Art │ │ │ ├── Common.meta │ │ │ ├── Common │ │ │ │ ├── Circle.png │ │ │ │ ├── Circle.png.meta │ │ │ │ ├── Circle_Stroke.png │ │ │ │ ├── Circle_Stroke.png.meta │ │ │ │ ├── Gradient_BottomToTop.png │ │ │ │ ├── Gradient_BottomToTop.png.meta │ │ │ │ ├── Gradient_LeftToRight.png │ │ │ │ ├── Gradient_LeftToRight.png.meta │ │ │ │ ├── Gradient_RightToLeft.png │ │ │ │ ├── Gradient_RightToLeft.png.meta │ │ │ │ ├── Gradient_TopToBottom.png │ │ │ │ ├── Gradient_TopToBottom.png.meta │ │ │ │ ├── Hexagon.png │ │ │ │ ├── Hexagon.png.meta │ │ │ │ ├── Hexagon_Stroke.png │ │ │ │ ├── Hexagon_Stroke.png.meta │ │ │ │ ├── Hexagon_Stroke_Vertical.png │ │ │ │ ├── Hexagon_Stroke_Vertical.png.meta │ │ │ │ ├── Hexagon_Vertical.png │ │ │ │ ├── Hexagon_Vertical.png.meta │ │ │ │ ├── Octagon.png │ │ │ │ ├── Octagon.png.meta │ │ │ │ ├── Octagon_Stroke.png │ │ │ │ ├── Octagon_Stroke.png.meta │ │ │ │ ├── Rounded.png │ │ │ │ ├── Rounded.png.meta │ │ │ │ ├── Square.png │ │ │ │ ├── Square.png.meta │ │ │ │ ├── Square_Rounded_32px.png │ │ │ │ ├── Square_Rounded_32px.png.meta │ │ │ │ ├── Square_Rounded_Outline_32px.png │ │ │ │ ├── Square_Rounded_Outline_32px.png.meta │ │ │ │ ├── Square_Stroke_32px.png │ │ │ │ └── Square_Stroke_32px.png.meta │ │ │ ├── Icons.meta │ │ │ ├── Icons │ │ │ │ ├── T_icon_art.png │ │ │ │ ├── T_icon_art.png.meta │ │ │ │ ├── T_icon_info.png │ │ │ │ ├── T_icon_info.png.meta │ │ │ │ ├── T_icon_link.png │ │ │ │ ├── T_icon_link.png.meta │ │ │ │ ├── T_icon_play.png │ │ │ │ ├── T_icon_play.png.meta │ │ │ │ ├── T_icon_share.png │ │ │ │ ├── T_icon_share.png.meta │ │ │ │ ├── T_icon_volume_off.png │ │ │ │ ├── T_icon_volume_off.png.meta │ │ │ │ ├── T_icon_volume_on.png │ │ │ │ ├── T_icon_volume_on.png.meta │ │ │ │ ├── T_icon_x.png │ │ │ │ └── T_icon_x.png.meta │ │ │ ├── T_RoundedSquare.png │ │ │ ├── T_RoundedSquare.png.meta │ │ │ ├── T_Transparent_32.png │ │ │ └── T_Transparent_32.png.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── InputBlocker - Dark.prefab │ │ │ ├── InputBlocker - Dark.prefab.meta │ │ │ ├── InputBlocker.prefab │ │ │ ├── InputBlocker.prefab.meta │ │ │ ├── UIAlert - Error.prefab │ │ │ ├── UIAlert - Error.prefab.meta │ │ │ ├── UIAlert - Info.prefab │ │ │ ├── UIAlert - Info.prefab.meta │ │ │ ├── UIAlert - Warning.prefab │ │ │ ├── UIAlert - Warning.prefab.meta │ │ │ ├── UIButton - Danger.prefab │ │ │ ├── UIButton - Danger.prefab.meta │ │ │ ├── UIButton - Icon - X.prefab │ │ │ ├── UIButton - Icon - X.prefab.meta │ │ │ ├── UIButton - Icon -.prefab │ │ │ ├── UIButton - Icon -.prefab.meta │ │ │ ├── UIButton - Icon.prefab │ │ │ ├── UIButton - Icon.prefab.meta │ │ │ ├── UIButton - Primary.prefab │ │ │ ├── UIButton - Primary.prefab.meta │ │ │ ├── UIButton - Secondary.prefab │ │ │ ├── UIButton - Secondary.prefab.meta │ │ │ ├── UIButton - Success.prefab │ │ │ ├── UIButton - Success.prefab.meta │ │ │ ├── UIButton - Text Only.prefab │ │ │ ├── UIButton - Text Only.prefab.meta │ │ │ ├── UIButton.prefab │ │ │ ├── UIButton.prefab.meta │ │ │ ├── UIInput - Labeless.prefab │ │ │ ├── UIInput - Labeless.prefab.meta │ │ │ ├── UIInput.prefab │ │ │ ├── UIInput.prefab.meta │ │ │ ├── UIRuntime.prefab │ │ │ ├── UIRuntime.prefab.meta │ │ │ ├── UIToggle.prefab │ │ │ ├── UIToggle.prefab.meta │ │ │ ├── UIVisualRoot.prefab │ │ │ ├── UIVisualRoot.prefab.meta │ │ │ ├── UIWindow.prefab │ │ │ ├── UIWindow.prefab.meta │ │ │ ├── UIWindowDragger.prefab │ │ │ └── UIWindowDragger.prefab.meta │ │ ├── Readme.asset │ │ ├── Readme.asset.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── UIResourcesCollection.asset │ │ │ └── UIResourcesCollection.asset.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── InheritedGroupedEditor.cs │ │ │ ├── InheritedGroupedEditor.cs.meta │ │ │ ├── OGTEditorUtils.cs │ │ │ ├── OGTEditorUtils.cs.meta │ │ │ ├── UIAnimationEditor.cs │ │ │ ├── UIAnimationEditor.cs.meta │ │ │ ├── UIButtonEditor.cs │ │ │ ├── UIButtonEditor.cs.meta │ │ │ ├── UIInputEditor.cs │ │ │ ├── UIInputEditor.cs.meta │ │ │ ├── UIItemBaseEditor.cs │ │ │ ├── UIItemBaseEditor.cs.meta │ │ │ ├── UIOtherEditor.cs │ │ │ ├── UIOtherEditor.cs.meta │ │ │ ├── UIToggleEditor.cs │ │ │ └── UIToggleEditor.cs.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ ├── CoreUIExtensions.cs │ │ │ ├── CoreUIExtensions.cs.meta │ │ │ ├── RectTransformExtensions.cs │ │ │ ├── RectTransformExtensions.cs.meta │ │ │ ├── SpriteExtensions.cs │ │ │ ├── SpriteExtensions.cs.meta │ │ │ ├── UIAnimationExtensions.cs │ │ │ ├── UIAnimationExtensions.cs.meta │ │ │ ├── UIExtensions.cs │ │ │ ├── UIExtensions.cs.meta │ │ │ ├── UITabSectionExtensions.cs │ │ │ ├── UITabSectionExtensions.cs.meta │ │ │ ├── UIVisualRootExtensions.cs │ │ │ └── UIVisualRootExtensions.cs.meta │ │ │ ├── TMPs.meta │ │ │ ├── TMPs │ │ │ ├── TextLinkObserver.cs │ │ │ └── TextLinkObserver.cs.meta │ │ │ ├── UIAnimation.cs │ │ │ ├── UIAnimation.cs.meta │ │ │ ├── UIButton.cs │ │ │ ├── UIButton.cs.meta │ │ │ ├── UIContentSection.cs │ │ │ ├── UIContentSection.cs.meta │ │ │ ├── UIElements.meta │ │ │ ├── UIElements │ │ │ ├── UIAlertPopup.cs │ │ │ ├── UIAlertPopup.cs.meta │ │ │ ├── UIGenericTextMessagePopup.cs │ │ │ └── UIGenericTextMessagePopup.cs.meta │ │ │ ├── UIGradient.cs │ │ │ ├── UIGradient.cs.meta │ │ │ ├── UIInput.cs │ │ │ ├── UIInput.cs.meta │ │ │ ├── UIInputBlocker.cs │ │ │ ├── UIInputBlocker.cs.meta │ │ │ ├── UIItem.cs │ │ │ ├── UIItem.cs.meta │ │ │ ├── UIItemBase.cs │ │ │ ├── UIItemBase.cs.meta │ │ │ ├── UIResourceDefinitions.cs │ │ │ ├── UIResourceDefinitions.cs.meta │ │ │ ├── UIResourcesCollection.cs │ │ │ ├── UIResourcesCollection.cs.meta │ │ │ ├── UIResponsiveRect.cs │ │ │ ├── UIResponsiveRect.cs.meta │ │ │ ├── UIRuntime.cs │ │ │ ├── UIRuntime.cs.meta │ │ │ ├── UIRuntimeResponsiveness.cs │ │ │ ├── UIRuntimeResponsiveness.cs.meta │ │ │ ├── UIRuntimeTMP.cs │ │ │ ├── UIRuntimeTMP.cs.meta │ │ │ ├── UISettingsCollection.cs │ │ │ ├── UISettingsCollection.cs.meta │ │ │ ├── UITabSection.cs │ │ │ ├── UITabSection.cs.meta │ │ │ ├── UITabWindow.cs │ │ │ ├── UITabWindow.cs.meta │ │ │ ├── UIText.cs │ │ │ ├── UIText.cs.meta │ │ │ ├── UIToggle.cs │ │ │ ├── UIToggle.cs.meta │ │ │ ├── UITooltip.cs │ │ │ ├── UITooltip.cs.meta │ │ │ ├── UIVisualRoot.cs │ │ │ ├── UIVisualRoot.cs.meta │ │ │ ├── UIWindow.cs │ │ │ ├── UIWindow.cs.meta │ │ │ ├── UIWindowDragger.cs │ │ │ └── UIWindowDragger.cs.meta │ ├── ScriptableVariables.meta │ ├── ScriptableVariables │ │ ├── Data.meta │ │ ├── Data │ │ │ ├── Events.meta │ │ │ ├── Events │ │ │ │ ├── OnPlayerLevelChange.asset │ │ │ │ ├── OnPlayerLevelChange.asset.meta │ │ │ │ ├── OnPlayerSpawn.asset │ │ │ │ └── OnPlayerSpawn.asset.meta │ │ │ ├── Variables.meta │ │ │ └── Variables │ │ │ │ ├── PlayerData Acc Experience.asset │ │ │ │ ├── PlayerData Acc Experience.asset.meta │ │ │ │ ├── PlayerData Acc Level.asset │ │ │ │ ├── PlayerData Acc Level.asset.meta │ │ │ │ ├── PlayerData Acc Nickname.asset │ │ │ │ ├── PlayerData Acc Nickname.asset.meta │ │ │ │ ├── PlayerData Stats Agility.asset │ │ │ │ ├── PlayerData Stats Agility.asset.meta │ │ │ │ ├── PlayerData Stats Intelligence.asset │ │ │ │ ├── PlayerData Stats Intelligence.asset.meta │ │ │ │ ├── PlayerData Stats Stamina.asset │ │ │ │ ├── PlayerData Stats Stamina.asset.meta │ │ │ │ ├── PlayerData Stats Strength.asset │ │ │ │ ├── PlayerData Stats Strength.asset.meta │ │ │ │ ├── PlayerData Wallet Credits.asset │ │ │ │ ├── PlayerData Wallet Credits.asset.meta │ │ │ │ ├── PlayerData Wallet Currency.asset │ │ │ │ ├── PlayerData Wallet Currency.asset.meta │ │ │ │ ├── PlayerData.asset │ │ │ │ └── PlayerData.asset.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── ScriptableVariablesResourcesCollection.asset │ │ │ └── ScriptableVariablesResourcesCollection.asset.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ ├── .idea │ │ │ │ └── .idea.Core.dir │ │ │ │ │ └── .idea │ │ │ │ │ ├── contentModel.xml │ │ │ │ │ ├── encodings.xml │ │ │ │ │ ├── indexLayout.xml │ │ │ │ │ ├── modules.xml │ │ │ │ │ ├── projectSettingsUpdater.xml │ │ │ │ │ ├── riderModule.iml │ │ │ │ │ ├── vcs.xml │ │ │ │ │ └── workspace.xml │ │ │ ├── Collections.meta │ │ │ ├── Collections │ │ │ │ ├── AudioClipsCollection.cs │ │ │ │ ├── AudioClipsCollection.cs.meta │ │ │ │ ├── BaseCollection.cs │ │ │ │ ├── BaseCollection.cs.meta │ │ │ │ ├── StringVariablesCollection.cs │ │ │ │ ├── StringVariablesCollection.cs.meta │ │ │ │ ├── StringsCollection.cs │ │ │ │ └── StringsCollection.cs.meta │ │ │ ├── Events.meta │ │ │ ├── Events │ │ │ │ ├── EventsManager.cs │ │ │ │ ├── EventsManager.cs.meta │ │ │ │ ├── GameEvent.cs │ │ │ │ ├── GameEvent.cs.meta │ │ │ │ ├── GameEventListener.cs │ │ │ │ └── GameEventListener.cs.meta │ │ │ ├── Interfaces.meta │ │ │ ├── Interfaces │ │ │ │ ├── IIdentifiable.cs │ │ │ │ └── IIdentifiable.cs.meta │ │ │ ├── ScriptableVariableBase.cs │ │ │ ├── ScriptableVariableBase.cs.meta │ │ │ ├── ScriptableVariableBaseMono.cs │ │ │ ├── ScriptableVariableBaseMono.cs.meta │ │ │ ├── ScriptableVariablesResourceDefinitions.cs │ │ │ ├── ScriptableVariablesResourceDefinitions.cs.meta │ │ │ ├── ScriptableVariablesResourcesCollection.cs │ │ │ ├── ScriptableVariablesResourcesCollection.cs.meta │ │ │ ├── Variables.meta │ │ │ └── Variables │ │ │ │ ├── AnimationCurveVariable.cs │ │ │ │ ├── AnimationCurveVariable.cs.meta │ │ │ │ ├── AudioClipVariable.cs │ │ │ │ ├── AudioClipVariable.cs.meta │ │ │ │ ├── BaseVariable.cs │ │ │ │ ├── BaseVariable.cs.meta │ │ │ │ ├── ColorVariable.cs │ │ │ │ ├── ColorVariable.cs.meta │ │ │ │ ├── FloatVariable.cs │ │ │ │ ├── FloatVariable.cs.meta │ │ │ │ ├── GameObjectVariable.cs │ │ │ │ ├── GameObjectVariable.cs.meta │ │ │ │ ├── IntVariable.cs │ │ │ │ ├── IntVariable.cs.meta │ │ │ │ ├── StringVariable.cs │ │ │ │ └── StringVariable.cs.meta │ │ │ ├── Player.meta │ │ │ └── Player │ │ │ ├── PlayerController.cs │ │ │ ├── PlayerController.cs.meta │ │ │ ├── PlayerData.cs │ │ │ └── PlayerData.cs.meta │ └── User │ │ └── Scripts │ │ ├── UserAuthOperation.cs │ │ └── UserAuthOperation.cs.meta ├── Prototype.meta └── Prototype │ ├── Dark.meta │ ├── Dark │ ├── prototype_dark_01.mat │ ├── prototype_dark_01.mat.meta │ ├── prototype_dark_01_10x10.mat │ ├── prototype_dark_01_10x10.mat.meta │ ├── prototype_dark_02.mat │ ├── prototype_dark_02.mat.meta │ ├── prototype_dark_03.mat │ ├── prototype_dark_03.mat.meta │ ├── prototype_dark_04.mat │ ├── prototype_dark_04.mat.meta │ ├── prototype_dark_05.mat │ ├── prototype_dark_05.mat.meta │ ├── prototype_dark_06.mat │ ├── prototype_dark_06.mat.meta │ ├── prototype_dark_07.mat │ ├── prototype_dark_07.mat.meta │ ├── prototype_dark_08.mat │ ├── prototype_dark_08.mat.meta │ ├── prototype_dark_09.mat │ ├── prototype_dark_09.mat.meta │ ├── prototype_dark_10.mat │ ├── prototype_dark_10.mat.meta │ ├── prototype_dark_11.mat │ ├── prototype_dark_11.mat.meta │ ├── prototype_dark_12.mat │ ├── prototype_dark_12.mat.meta │ ├── prototype_dark_13.mat │ ├── prototype_dark_13.mat.meta │ ├── texture_01.png │ ├── texture_01.png.meta │ ├── texture_02.png │ ├── texture_02.png.meta │ ├── texture_03.png │ ├── texture_03.png.meta │ ├── texture_04.png │ ├── texture_04.png.meta │ ├── texture_05.png │ ├── texture_05.png.meta │ ├── texture_06.png │ ├── texture_06.png.meta │ ├── texture_07.png │ ├── texture_07.png.meta │ ├── texture_08.png │ ├── texture_08.png.meta │ ├── texture_09.png │ ├── texture_09.png.meta │ ├── texture_10.png │ ├── texture_10.png.meta │ ├── texture_11.png │ ├── texture_11.png.meta │ ├── texture_12.png │ ├── texture_12.png.meta │ ├── texture_13.png │ └── texture_13.png.meta │ ├── Green.meta │ ├── Green │ ├── prototype_green_01.mat │ ├── prototype_green_01.mat.meta │ ├── prototype_green_01_10x10.mat │ ├── prototype_green_01_10x10.mat.meta │ ├── prototype_green_02.mat │ ├── prototype_green_02.mat.meta │ ├── prototype_green_03.mat │ ├── prototype_green_03.mat.meta │ ├── prototype_green_04.mat │ ├── prototype_green_04.mat.meta │ ├── prototype_green_05.mat │ ├── prototype_green_05.mat.meta │ ├── prototype_green_06.mat │ ├── prototype_green_06.mat.meta │ ├── prototype_green_07.mat │ ├── prototype_green_07.mat.meta │ ├── prototype_green_08.mat │ ├── prototype_green_08.mat.meta │ ├── prototype_green_09.mat │ ├── prototype_green_09.mat.meta │ ├── prototype_green_10.mat │ ├── prototype_green_10.mat.meta │ ├── prototype_green_11.mat │ ├── prototype_green_11.mat.meta │ ├── prototype_green_12.mat │ ├── prototype_green_12.mat.meta │ ├── prototype_green_13.mat │ ├── prototype_green_13.mat.meta │ ├── texture_01.png │ ├── texture_01.png.meta │ ├── texture_02.png │ ├── texture_02.png.meta │ ├── texture_03.png │ ├── texture_03.png.meta │ ├── texture_04.png │ ├── texture_04.png.meta │ ├── texture_05.png │ ├── texture_05.png.meta │ ├── texture_06.png │ ├── texture_06.png.meta │ ├── texture_07.png │ ├── texture_07.png.meta │ ├── texture_08.png │ ├── texture_08.png.meta │ ├── texture_09.png │ ├── texture_09.png.meta │ ├── texture_10.png │ ├── texture_10.png.meta │ ├── texture_11.png │ ├── texture_11.png.meta │ ├── texture_12.png │ ├── texture_12.png.meta │ ├── texture_13.png │ └── texture_13.png.meta │ ├── Light.meta │ ├── Light │ ├── texture_01.png │ ├── texture_01.png.meta │ ├── texture_02.png │ ├── texture_02.png.meta │ ├── texture_03.png │ ├── texture_03.png.meta │ ├── texture_04.png │ ├── texture_04.png.meta │ ├── texture_05.png │ ├── texture_05.png.meta │ ├── texture_06.png │ ├── texture_06.png.meta │ ├── texture_07.png │ ├── texture_07.png.meta │ ├── texture_08.png │ ├── texture_08.png.meta │ ├── texture_09.png │ ├── texture_09.png.meta │ ├── texture_10.png │ ├── texture_10.png.meta │ ├── texture_11.png │ ├── texture_11.png.meta │ ├── texture_12.png │ ├── texture_12.png.meta │ ├── texture_13.png │ └── texture_13.png.meta │ ├── Orange.meta │ ├── Orange │ ├── texture_01.png │ ├── texture_01.png.meta │ ├── texture_02.png │ ├── texture_02.png.meta │ ├── texture_03.png │ ├── texture_03.png.meta │ ├── texture_04.png │ ├── texture_04.png.meta │ ├── texture_05.png │ ├── texture_05.png.meta │ ├── texture_06.png │ ├── texture_06.png.meta │ ├── texture_07.png │ ├── texture_07.png.meta │ ├── texture_08.png │ ├── texture_08.png.meta │ ├── texture_09.png │ ├── texture_09.png.meta │ ├── texture_10.png │ ├── texture_10.png.meta │ ├── texture_11.png │ ├── texture_11.png.meta │ ├── texture_12.png │ ├── texture_12.png.meta │ ├── texture_13.png │ └── texture_13.png.meta │ ├── Purple.meta │ ├── Purple │ ├── texture_01.png │ ├── texture_01.png.meta │ ├── texture_02.png │ ├── texture_02.png.meta │ ├── texture_03.png │ ├── texture_03.png.meta │ ├── texture_04.png │ ├── texture_04.png.meta │ ├── texture_05.png │ ├── texture_05.png.meta │ ├── texture_06.png │ ├── texture_06.png.meta │ ├── texture_07.png │ ├── texture_07.png.meta │ ├── texture_08.png │ ├── texture_08.png.meta │ ├── texture_09.png │ ├── texture_09.png.meta │ ├── texture_10.png │ ├── texture_10.png.meta │ ├── texture_11.png │ ├── texture_11.png.meta │ ├── texture_12.png │ ├── texture_12.png.meta │ ├── texture_13.png │ └── texture_13.png.meta │ ├── Red.meta │ ├── Red │ ├── prototype_red_10.mat │ ├── prototype_red_10.mat.meta │ ├── texture_01.png │ ├── texture_01.png.meta │ ├── texture_02.png │ ├── texture_02.png.meta │ ├── texture_03.png │ ├── texture_03.png.meta │ ├── texture_04.png │ ├── texture_04.png.meta │ ├── texture_05.png │ ├── texture_05.png.meta │ ├── texture_06.png │ ├── texture_06.png.meta │ ├── texture_07.png │ ├── texture_07.png.meta │ ├── texture_08.png │ ├── texture_08.png.meta │ ├── texture_09.png │ ├── texture_09.png.meta │ ├── texture_10.png │ ├── texture_10.png.meta │ ├── texture_11.png │ ├── texture_11.png.meta │ ├── texture_12.png │ ├── texture_12.png.meta │ ├── texture_13.png │ └── texture_13.png.meta │ ├── Terrain.mat │ └── Terrain.mat.meta ├── _config.yml ├── _config.yml.meta ├── changelog.md ├── contributing.md └── contributing.md.meta /.github/funding.yml: -------------------------------------------------------------------------------- 1 | patreon: eduardou24 2 | github: eduardou24 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Documentation/*.meta 2 | !Documentation/Images.meta 3 | Documentation/Images/*.meta 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: required 2 | language: objective-c 3 | osx_image: xcode11.2 4 | cache: 5 | timeout: 86400 # 1 day 6 | directories: 7 | - $HOME/cache/ 8 | install: 9 | - bash <(curl -fsSL https://raw.githubusercontent.com/neogeek/unity-ci-tools/v1.0.0/bin/install.sh) 10 | script: 11 | - bash <(curl -fsSL https://raw.githubusercontent.com/neogeek/unity-ci-tools/v1.0.0/bin/auth.sh) 12 | - bash <(curl -fsSL https://raw.githubusercontent.com/neogeek/unity-ci-tools/v1.0.0/bin/test.sh) 13 | - bash <(curl -fsSL https://raw.githubusercontent.com/neogeek/unity-ci-tools/v1.0.0/bin/deauth.sh) -------------------------------------------------------------------------------- /CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32d39cae182dcba4899664a0031b4da0 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf88c7c98de3ba844986ef17e3916173 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Documentation/3. UIResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/Documentation/3. UIResources.md -------------------------------------------------------------------------------- /Documentation/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9049ab959eff763419fcd77ff0d4e7af 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Documentation/Images/Attributes_ScriptableObject_Foldout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/Documentation/Images/Attributes_ScriptableObject_Foldout.png -------------------------------------------------------------------------------- /Documentation/Images/CreateModuleMenuItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/Documentation/Images/CreateModuleMenuItem.png -------------------------------------------------------------------------------- /Documentation/Images/CreateModuleWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/Documentation/Images/CreateModuleWindow.png -------------------------------------------------------------------------------- /Documentation/Images/GameResourcesScriptableObject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/Documentation/Images/GameResourcesScriptableObject.png -------------------------------------------------------------------------------- /Documentation/Images/GameSettingsScriptableObject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/Documentation/Images/GameSettingsScriptableObject.png -------------------------------------------------------------------------------- /Documentation/Images/SelectMenuToSelectSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/Documentation/Images/SelectMenuToSelectSettings.png -------------------------------------------------------------------------------- /Documentation/Images/SelectMenuToSelectUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/Documentation/Images/SelectMenuToSelectUI.png -------------------------------------------------------------------------------- /Documentation/Images/UIMainMenuSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/Documentation/Images/UIMainMenuSetup.png -------------------------------------------------------------------------------- /Documentation/Images/UISettings_Sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/Documentation/Images/UISettings_Sorting.png -------------------------------------------------------------------------------- /Documentation/Images/UITagsAndLayers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/Documentation/Images/UITagsAndLayers.png -------------------------------------------------------------------------------- /Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 275a533257c9ab54dbb4ee0e56c75bd6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/CoreUI_ModuleOverview.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d00b7d4b84c03e44974da0e59d23c1c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/CoreUI_ResponsiveOverview.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29ecb4aa706c40e40b651629da62aa70 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/CoreUI_UITabWindow.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 862288d3a465d574c9dc3088f3fc2c99 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/CoreUI_UITabWindow_ListItems.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dd80529da1225a409e06152e424b56c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/CoreUI_UIWindow_MultipleVisualRoots.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13f381961409fe447a7061e148a299e1 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9c0a8466bd617045853a66b2f3dfe81 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/Prefabs/CoreUI_CustomUITabWindow.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9de50efb5bb8846449fd9627ac786922 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/Prefabs/CoreUI_CustomUITabWindow_ListItems.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fecc0ea0fe269dc48a448907780a5323 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/Prefabs/CoreUI_CustomUIWindow.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 620078516baadaf4c9969266104411f1 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/Prefabs/CoreUI_CustomUIWindow_MultipleVisualRoots.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b08aadecd000f0c428ed85f44c7265e4 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/Prefabs/CoreUI_CustomUIWindow_Responsive.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0919137380db719498eb0248c68e3c95 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a9246d7286f79448ad04a3c23f8324c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/Scripts/CoreUI_CustomUITabWindow.cs: -------------------------------------------------------------------------------- 1 | using TMPro; 2 | using UnityEngine; 3 | 4 | namespace OGT.Examples 5 | { 6 | // ReSharper disable once InconsistentNaming 7 | public class CoreUI_CustomUITabWindow : UITabWindow 8 | { 9 | [Header("CoreUI_CustomUIWindow")] 10 | [SerializeField] private TMP_Text m_title; 11 | [SerializeField] private TMP_Text m_message; 12 | 13 | protected override void OnInit() 14 | { 15 | base.OnInit(); 16 | m_title.SetLocalizedText("My Custom Tab Window"); 17 | m_message.SetLocalizedText("This window was created in runtime and is using UI Animations."); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /Examples/Scripts/CoreUI_CustomUITabWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6ad6179404cb504c91d44be4e7922e6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/Scripts/CoreUI_CustomUIWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 411829dda292ba646af4e23593fd461e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/Scripts/CoreUI_ExampleOverview.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87acceb72b2e7704d8501faf4b9889e5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/Scripts/ExampleUtils.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT.Examples 4 | { 5 | public static class ExampleUtils 6 | { 7 | public static void CreateExampleButton(string label, Action onClick) 8 | { 9 | GameResources.UI.TryGetEditorUIItem("UIButton", out UIButton buttonPrefab); 10 | 11 | GameResources.UIRuntime.TryGetUISectionByType(UISectionType.Default, out UIScreenPanelContainer container); 12 | 13 | UIButton button = UnityEngine.Object.Instantiate(buttonPrefab, container.Canvas.transform); 14 | button.SetLabel(label); 15 | button.OnClick += onClick; 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /Examples/Scripts/ExampleUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbfc5e44eddbf874fa97b0da1b3aa8a5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 140eb9d46b53692418d7008f9482ece4 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5962bda808ac10a4b8bfca0d4448dd5f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 611c2c4add1eabb4a97e9bda4b9e206b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 398febe54a1606e42b81cf0f29e6dcfa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3ecde28ff74f864b9da8f6ffb352b18 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33d449e727d7a474f8bee90d11dbcda6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Audio/AudioClipDefinition_OnUIButtonClick.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: e7890ffd3b85cc44a8776e9a71a218e3, type: 3} 13 | m_Name: AudioClipDefinition_OnUIButtonClick 14 | m_EditorClassIdentifier: 15 | Clip: {fileID: 8300000, guid: cd7044bf418f642df9a2130900bd3fd5, type: 3} 16 | Layer: 0 17 | OverridePlayMode: 0 18 | VolumeScale: 1 19 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Audio/AudioClipDefinition_OnUIButtonClick.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8f9383b992b67046b0d9b00202b6dbe 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Audio/Clips.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 419aeb0dc0676fd4e99ebe1138a3d492 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Audio/Clips/Click_Standard_00.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/Core/Audio/Clips/Click_Standard_00.wav -------------------------------------------------------------------------------- /SDK/Modules/Core/Audio/Clips/Click_Standard_00.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd7044bf418f642df9a2130900bd3fd5 3 | AudioImporter: 4 | externalObjects: {} 5 | serializedVersion: 6 6 | defaultSettings: 7 | loadType: 1 8 | sampleRateSetting: 1 9 | sampleRateOverride: 0 10 | compressionFormat: 1 11 | quality: 0.7 12 | conversionMode: 0 13 | platformSettingOverrides: {} 14 | forceToMono: 1 15 | normalize: 1 16 | preloadAudioData: 1 17 | loadInBackground: 0 18 | ambisonic: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd038ab19902a8f4c82d881efb2441d7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Prefabs/GameRuntime.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 394982bcd2f98474bbe4afbb03b5e5f2 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Prototype.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e2811e9005dd324699819b2e442a647 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Prototype/CustomPostProcessData.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0168dc4a7d3044a4ca99a6b316cbeeac 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Prototype/PostProcessingVolume.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 622f3691938e69140831c0f474e416c0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Prototype/Test World & Obstacles.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54afa34834e98f34787e7d7de0daeb60 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Readme.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: aadf8543493fd0146af5ec58c939edee, type: 3} 13 | m_Name: Readme 14 | m_EditorClassIdentifier: 15 | ModuleName: Core 16 | Description: 17 | DocumentationURL: 18 | TaskManagerURL: 19 | Dependencies: [] 20 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Readme.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02f00ee63938cea428e230ad3e95bf72 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd234db3f38f69545bc899cab90603f1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Resources/GameAudioResourcesCollection.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 1bff43584c5e34e48a978fa460d68e05, type: 3} 13 | m_Name: GameAudioResourcesCollection 14 | m_EditorClassIdentifier: 15 | m_loadablePrefabs: [] 16 | m_sounds: 17 | - {fileID: 11400000, guid: b8f9383b992b67046b0d9b00202b6dbe, type: 2} 18 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Resources/GameAudioResourcesCollection.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb105f2a3ebe5a34e93cf207f6d270b4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Resources/GameDependenciesCollection.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 9107d15a6ddc90041bb159229c9fe642, type: 3} 13 | m_Name: GameDependenciesCollection 14 | m_EditorClassIdentifier: 15 | m_prefabs: 16 | - {fileID: 269381495904816869, guid: 394982bcd2f98474bbe4afbb03b5e5f2, type: 3} 17 | - {fileID: 6809938705032059769, guid: f8959b806c7b7c8438ed06594b1e2ce7, type: 3} 18 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Resources/GameDependenciesCollection.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba0db6fa41c92944baa2704f18480fbe 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Resources/GameSettingsCollection.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 633469042d6ba6d4f8036a364fc91ba3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8761b2e61479a4341bfca8fa9542046c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21ec7e3521301634ca09c432a012e169 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/ButtonAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e60bd1263d81658469d6cc13207fb164 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/ConditionalHideAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6d010454e7037b45b4cade9aeda26b8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/DrawerAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | /// 6 | /// Base class for all drawer attributes 7 | /// 8 | public class DrawerAttribute : PropertyAttribute, IOGTAttribute 9 | { 10 | } 11 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/DrawerAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fe113a2d78be2b4f9402781af29a0cf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/EColor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f31a0741e8ee94543842e782b024bca1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/EConditionOperator.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | public enum EConditionOperator 6 | { 7 | And, 8 | Or 9 | } 10 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/EConditionOperator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6337478fa975fa489f9797c4b93cb39 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Expandable.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class ExpandableAttribute : DrawerAttribute 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Expandable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 798df8dabc47ec44da9fb54cc5117dd7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/HorizontalLineAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = true, Inherited = true)] 6 | public class HorizontalLineAttribute : DrawerAttribute 7 | { 8 | public const float DefaultHeight = 2.0f; 9 | public const EColor DefaultColor = EColor.Gray; 10 | 11 | public float Height { get; private set; } 12 | public EColor Color { get; private set; } 13 | 14 | public HorizontalLineAttribute(float height = DefaultHeight, EColor color = DefaultColor) 15 | { 16 | Height = height; 17 | Color = color; 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/HorizontalLineAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbf5f4b688a6f3e4492cc1897e0ecbf7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/IOGTAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace OGT 2 | { 3 | public interface IOGTAttribute 4 | { 5 | } 6 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/IOGTAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 165b00676bd7e8e4aa42ee849697f331 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aae0e9c750c62d749b064aa5d1f74473 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/BoxGroupAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class BoxGroupAttribute : MetaAttribute, IGroupAttribute 7 | { 8 | public string Name { get; private set; } 9 | 10 | public BoxGroupAttribute(string name = "") 11 | { 12 | Name = name; 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/BoxGroupAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 722a39f2550d91747ad6a8463883cbbf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/EnableIfAttributeBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29d447ab4491f404cbc1dcb618c34e57 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/FoldoutAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class FoldoutAttribute : MetaAttribute, IGroupAttribute 7 | { 8 | public string Name { get; private set; } 9 | 10 | public FoldoutAttribute(string name) 11 | { 12 | Name = name; 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/FoldoutAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e39545e69dd8bf4e973353126498213 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/IGroupAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | public interface IGroupAttribute 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/IGroupAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2aa2aadd99b538b42b0a085f53a182c8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/LabelAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class LabelAttribute : MetaAttribute 7 | { 8 | public string Label { get; private set; } 9 | 10 | public LabelAttribute(string label) 11 | { 12 | Label = label; 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/LabelAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ed41280d425bc942a370fab8bea2c73 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/MetaAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | public class MetaAttribute : Attribute, IOGTAttribute 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/MetaAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d30c6ab63f6669a41a93e36724088ebe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/OnValueChangedAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = true, Inherited = true)] 6 | public class OnValueChangedAttribute : MetaAttribute 7 | { 8 | public string CallbackName { get; private set; } 9 | 10 | public OnValueChangedAttribute(string callbackName) 11 | { 12 | CallbackName = callbackName; 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/OnValueChangedAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b05ce2daac565aa4581c5c2bfc9b47d5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/ReadOnlyAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class ReadOnlyAttribute : MetaAttribute 7 | { 8 | 9 | } 10 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/ReadOnlyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2ddb62d446dcaa4ca7d6d45b8c17f74 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Metas/ShowIfAttributeBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0de030071c6e4f649b04942babd8a71c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/ReorderableListAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class ReorderableListAttribute : SpecialCaseDrawerAttribute 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/ReorderableListAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83de30c6fb9cea9438adce9ed182c7d5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/ResizableTextAreaAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class ResizableTextAreaAttribute : DrawerAttribute 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/ResizableTextAreaAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b05e320a64717b0488a6b299c76efe14 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/ShowNativePropertyAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)] 6 | public class ShowNativePropertyAttribute : SpecialCaseDrawerAttribute 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/ShowNativePropertyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c2b6429d3b601f4fb7ed8430a3a5413 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/ShowNonSerializedFieldAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class ShowNonSerializedFieldAttribute : SpecialCaseDrawerAttribute 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/ShowNonSerializedFieldAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4da558f179e8ee478d7879307210388 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/SpecialCaseDrawerAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | public class SpecialCaseDrawerAttribute : Attribute, IOGTAttribute 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/SpecialCaseDrawerAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ad5419f7f0485f4d905b4bfd4a30eb4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Validators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a65e7ae5693baa54ea145c36510fc23c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Validators/MaxValueAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class MaxValueAttribute : ValidatorAttribute 7 | { 8 | public float MaxValue { get; private set; } 9 | 10 | public MaxValueAttribute(float maxValue) 11 | { 12 | MaxValue = maxValue; 13 | } 14 | 15 | public MaxValueAttribute(int maxValue) 16 | { 17 | MaxValue = maxValue; 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Validators/MaxValueAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea42059c3453b21449271944dd743886 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Validators/MinValueAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class MinValueAttribute : ValidatorAttribute 7 | { 8 | public float MinValue { get; private set; } 9 | 10 | public MinValueAttribute(float minValue) 11 | { 12 | MinValue = minValue; 13 | } 14 | 15 | public MinValueAttribute(int minValue) 16 | { 17 | MinValue = minValue; 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Validators/MinValueAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 845b56987b994d44181b8b910f977d7e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Validators/RequiredAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class RequiredAttribute : ValidatorAttribute 7 | { 8 | public string Message { get; private set; } 9 | 10 | public RequiredAttribute(string message = null) 11 | { 12 | Message = message; 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Validators/RequiredAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d444b0dedb6cf3418d2397d49b0be93 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Validators/ValidateInputAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] 6 | public class ValidateInputAttribute : ValidatorAttribute 7 | { 8 | public string CallbackName { get; private set; } 9 | public string Message { get; private set; } 10 | 11 | public ValidateInputAttribute(string callbackName, string message = null) 12 | { 13 | CallbackName = callbackName; 14 | Message = message; 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Validators/ValidateInputAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d71b26c9ecba3f46ae74089f74cb09f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Validators/ValidatorAttributes.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace OGT 4 | { 5 | public class ValidatorAttribute : Attribute, IOGTAttribute 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Attributes/Validators/ValidatorAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ce56e5bbff5d1f42a9ddd5fa38ef1d6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b5b1726543ef0a4b9bc5c01d1ca338e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Audio/AudioClipDefinition.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | [CreateAssetMenu(fileName = "AudioClipDefinition", menuName = OGTConstants.kGameAudioMenuPath + "AudioClip Definition")] 6 | public class AudioClipDefinition : BaseScriptableObject 7 | { 8 | public AudioClip Clip; 9 | public AudioLayer Layer; 10 | public AudioPlayMode OverridePlayMode = AudioPlayMode.None; 11 | public float VolumeScale = 1f; 12 | } 13 | 14 | public enum AudioPlayMode 15 | { 16 | None, 17 | OneShot, 18 | Loop 19 | } 20 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Audio/AudioClipDefinition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7890ffd3b85cc44a8776e9a71a218e3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Audio/AudioRuntime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75ccb190e5bb39848a902eff0f8b2da4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Audio/GameAudioResources.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90afcaa00111bfb439b29d7093b03375 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Audio/GameAudioResourcesCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bff43584c5e34e48a978fa460d68e05 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Audio/SmartAudioSource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f0f22f9bcd58ca449f448ab663a0fac 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/BaseBehaviour.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | public class BaseBehaviour : MonoBehaviour 6 | { 7 | private bool m_initialized; 8 | 9 | protected virtual void Awake() => Initialize(); 10 | 11 | protected virtual void Initialize() 12 | { 13 | if (m_initialized) 14 | return; 15 | 16 | m_initialized = true; 17 | OnInit(); 18 | } 19 | 20 | public virtual void Disable(bool softDisable = false) => gameObject.SetActive(false); 21 | public virtual void Enable() => gameObject.SetActive(true); 22 | 23 | protected virtual void OnInit() { } 24 | protected virtual void OnEnable() { } 25 | protected virtual void OnDisable() { } 26 | } 27 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/BaseBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c765f5902dba8449ae5431405d0395f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/BaseGameCharacterController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8caaeaaead17f394d81b0e8a1f976a59 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/BaseResourcesCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13d67a53cdb9f17448dc6484479d05ed 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/BaseScriptableObject.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | namespace OGT 6 | { 7 | public class BaseScriptableObject : ScriptableObject 8 | { 9 | 10 | #if UNITY_EDITOR 11 | [ContextMenu("Ping in Project Folder")] 12 | private void SelectInProjectFolder() 13 | { 14 | UnityEditor.EditorGUIUtility.PingObject(this); 15 | } 16 | #endif 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/BaseScriptableObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: beefbc256cc088847945622b37776c03 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/BodyContainer.cs: -------------------------------------------------------------------------------- 1 | namespace OGT 2 | { 3 | public class BodyContainer 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/BodyContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c526e1260fce074ab0a6327404ef7ba 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/CameraController.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | public class CameraController : MonoBehaviour 6 | { 7 | [SerializeField] protected Camera m_worldCamera; 8 | [SerializeField] protected Camera m_uiCamera; 9 | 10 | protected virtual void Awake() 11 | { 12 | GameResources.Runtime.MainCameraController = this; 13 | GameRuntime.WorldCamera = m_worldCamera; 14 | UIRuntime.UICamera = m_uiCamera; 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/CameraController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e934308d4b3fabf44aca3be70173f711 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36920a6f8271ae04da0bc6111c591eb0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/ButtonUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc0d8ae8bb4dc3e4d9156c55463b2a90 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/CreateModule.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef9f58daf84a7b64bb34134e60f7490a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/CreateModule/CreateModuleWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b212a6071ede014092f34353ef0510e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/CreateModule/TemplateResourceDefinitions.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5aa2311db4be6dc4182be380a867672d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/CreateModule/TemplateResourcesCollection.txt: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | [CreateAssetMenu(fileName = nameof(#MODULE_NAME#ResourcesCollection), menuName = OGTConstants.kCreateMenuPrefixNameResources + nameof(#MODULE_NAME#ResourcesCollection))] 6 | public class #MODULE_NAME#ResourcesCollection : BaseResourcesCollection 7 | { 8 | [SerializeField] private #MODULE_NAME#Runtime m_#MODULE_NAME_LOWER#Runtime; 9 | 10 | public #MODULE_NAME#Runtime #MODULE_NAME#Runtime => m_#MODULE_NAME_LOWER#Runtime; 11 | } 12 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/CreateModule/TemplateResourcesCollection.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3383975eb4ef854884ae35a6a0f2903 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/CreateModule/TemplateRuntime.txt: -------------------------------------------------------------------------------- 1 | namespace OGT 2 | { 3 | public partial class #MODULE_NAME#Runtime : MonoSingletonSelfGenerated<#MODULE_NAME#Runtime>, IGameDependency 4 | { 5 | public static bool IsReady { get; private set; } 6 | 7 | protected override void OnSingletonAwake() 8 | { 9 | base.OnSingletonAwake(); 10 | Initialize(); 11 | } 12 | 13 | private void Initialize() 14 | { 15 | IsReady = true; 16 | } 17 | } 18 | 19 | public static class #MODULE_NAME#RuntimeExtensions 20 | { 21 | } 22 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/CreateModule/TemplateRuntime.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7add4ff697e12034d98d9d6f30537fec 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/CreateModule/TemplateSettingsCollection.txt: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | namespace OGT 5 | { 6 | public partial class GameSettingsCollection 7 | { 8 | [Header("#MODULE_NAME# Settings")] 9 | public #MODULE_NAME#Settings #MODULE_NAME#; 10 | 11 | [Serializable] 12 | public struct #MODULE_NAME#Settings 13 | { 14 | public string ChangeMe; 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/CreateModule/TemplateSettingsCollection.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81dc6b4fee154034e8b130622bfc98c5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/CreateModule/TemplateTemporalPrefabMakingScript.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2878e64516f0ae64eab6415650d7241c 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/Drawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d6e6ad94828a1943b7db36314c007de 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/Drawers/ConditionalHidePropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6efe261b405a5524c83103bd539ab704 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/Drawers/ExpandablePropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31072eba1b2b3f14fa6dd209d350caef 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/Drawers/HorizontalLineDecoratorDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8a1039eb8e62bc49908a142e70ea814 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/Drawers/MaxValuePropertyValidator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03ab5eca55bfd54498c028ec21974126 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/Drawers/MinValuePropertyValidator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5293b03ffdf2a604b87a69303f77d941 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/Drawers/PropertyDrawerBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb2ef82d6644cbc469f02c9f2f3a9fe4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/Drawers/ReorderableListPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd0ca77cffeaf6b43b7800627a90fba8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/Drawers/ResizableTextAreaPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad55b5289c197d54baa99202eefd4ad0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/Drawers/SpecialCasePropertyDrawerBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 423a0a631725ee04f9b5d1653c537570 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/EditorExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d45092bb7b54564c825e3ba6af81445 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/OGTEditorGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4176c2a446fdc4c40aa9da3cb73af1ba 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/OGTInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0f3ef18ab80e714eb7249763ea172d8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/OGTSettingsProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2936ec3ff72265940bcaa98e90e7a4e9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/PropertyUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c8115ff933b2844e8fc60945a67a2c7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/PropertyValidatorBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de09f8c6b588f4c4d8a4a288cf99de07 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/ReflectionUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2b3dae478b975545966101bb8e581c0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/RequiredPropertyValidator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5962b80e8f1b77549bd19b65df719fbf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/SavedBool.cs: -------------------------------------------------------------------------------- 1 | using UnityEditor; 2 | 3 | namespace OGT.Editor 4 | { 5 | internal class SavedBool 6 | { 7 | private bool m_value; 8 | private readonly string m_name; 9 | 10 | public bool Value 11 | { 12 | get => m_value; 13 | set 14 | { 15 | if (m_value == value) 16 | return; 17 | 18 | m_value = value; 19 | EditorPrefs.SetBool(m_name, value); 20 | } 21 | } 22 | 23 | public SavedBool(string name, bool value) 24 | { 25 | m_name = name; 26 | m_value = EditorPrefs.GetBool(name, value); 27 | } 28 | } 29 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/SavedBool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a735111efa4e3a541a64b0c371442d9a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Editor/ValidateInputPropertyValidator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0848e75e36a636f4fa690e96c3035fae 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ee450549f96a9d40905bb294acfa2de 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/AudioExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d1754a41db6d27438532405610d78c3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/ColorExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06488239c3b801b48ad3e0c251b827df 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/ComponentExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7270c12cd82c07548bc592bd786a5a08 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/ComputerSizingExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03370d9ed0d81f941ab93f7a43ab14a7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/DebugExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b9807a4809568d4ab38dcef7093c6de 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/DictionaryExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63ae3402d260b1644863a75160ee4194 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/DoTweenExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a415cfe161843149a68dd90f23b6d10 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/EnumExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e584e12a476d4a4793e7cd810dc9b20 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/GameObjectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d416801b9c33cbb4abbf36a491c8a02a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/ListExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a03de247709fcaf4cbc3c817c227c641 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/MonoBehaviourExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bea0a2a2964c58645a3b142c9ee473d3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/NumericExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5564ff4b6968d8478f2ec05d2297e86 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/StringExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 326e82f064b9d5c48b77e6d43e4fb95a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/TMPExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd4d9154f2732b5458c10c796713dec2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/TransformExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3da720f266e61a947bab341ad9702509 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Extensions/Vector3Extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd752e1fec3297243ad4e726f7d6efed 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/GameDependenciesCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9107d15a6ddc90041bb159229c9fe642 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/GameModulePackageReadme.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aadf8543493fd0146af5ec58c939edee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/GameResources.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adce2480f1e59f74095be5b9b368828d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/GameRuntime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4676d66eedb5cd4fae6b79137f2d172 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/GameSettings.cs: -------------------------------------------------------------------------------- 1 | namespace OGT 2 | { 3 | public static partial class GameResources 4 | { 5 | public static GameSettingsCollection Settings => GetGameResource(ref m_settings); 6 | 7 | private static GameSettingsCollection m_settings; 8 | } 9 | } 10 | 11 | #if UNITY_EDITOR 12 | #region Editor top menu methods 13 | namespace OGT 14 | { 15 | using UnityEditor; 16 | public static partial class CoreEditor 17 | { 18 | [MenuItem(OGTConstants.kModuleMenuPath + "Select ⚙️ Settings")] 19 | private static void SelectGameSettings() 20 | { 21 | Selection.activeObject = GameResources.Settings; 22 | EditorGUIUtility.PingObject(Selection.activeObject); 23 | } 24 | } 25 | } 26 | #endregion 27 | #endif -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/GameSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2046db667f0c5d54fb4bed454e7b1c86 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/GameSettingsCollection.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | namespace OGT 6 | { 7 | [CreateAssetMenu(fileName = nameof(GameSettingsCollection), menuName = OGTConstants.kCreateMenuPrefixNameResources + nameof(GameSettingsCollection))] 8 | public partial class GameSettingsCollection : ScriptableObject { } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/GameSettingsCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5262d8aa7abead448a1c9e602af946d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/IGameDependency.cs: -------------------------------------------------------------------------------- 1 | namespace OGT 2 | { 3 | public class GameDependency : BaseBehaviour, IGameDependency { } 4 | 5 | public interface IGameDependency 6 | { 7 | public static bool IsReady { get; private set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/IGameDependency.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5294969966c48ee448ca2bc16ad6a8ca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/MonoSingletonSelfGenerated.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7ca88cca645c6c47bba2af333aadd33 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/MonoSingletonUnmanaged.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da48a0a438e31954ba35159b1abde96f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/OGTConstants.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3572c3041b4c4cd5bc4eb7606eb4a91b 3 | timeCreated: 1692628148 -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/ScriptableAnimation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb6d694eb7c5f294d90a472dff069d09 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a416db70d7b14044e83f9f97c54a3b3e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Utils/PrefabUtilities.cs: -------------------------------------------------------------------------------- 1 | namespace OGT 2 | { 3 | public static class PrefabUtilities 4 | { 5 | } 6 | } -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Utils/PrefabUtilities.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0be5619bff7111e459193e7611df8592 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/Utils/WebUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20b2e36c712144e4eaff896f01e23f2d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/Core/Scripts/VisualRoot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2cfe03f391effd46b16e7f6f06703f8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0bf76d612f9110449498fe92253cc3d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Animations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 238439537400b2d43ad921b981937e69 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Animations/UIAnimation_FadeIn.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5612cdccd2a124240ac3d693e289c6a0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Animations/UIAnimation_FadeInFromBottom.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7f1bed52dac224418e796f023c8250f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Animations/UIAnimation_FadeInFromRight.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3becfa8c72f635645abaa18bd3e7d4a6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Animations/UIAnimation_FadeInFromTop.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06badbd3d49f1cd41b126af06dc6c229 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Animations/UIAnimation_FadeInScaleIn.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16662b2e47cbd3d44918d0e981a3f475 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Animations/UIAnimation_FadeOut.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 020946f89effb894880e1b603a9445bb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Animations/UIAnimation_FadeOutScaleOut.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6a2c1a39dbbf504bbcc8af49274e715 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Animations/UIAnimation_FadeOutToBottom.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe6628c06c5fe8a4b9b41990f5924b06 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Animations/UIAnimation_FadeOutToRight.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72171c62cde7eaa44b159531bc9e21e3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Animations/UIAnimation_FadeOutToTop.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1506ae2c084ed644ae1bb788982f59f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Animations/UIAnimation_None.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 986fff21acaa8b1478f0ebdad7acca0b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Animations/UIAnimation_PunchScale.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54d856158c45b2542a7d2af40d23c107 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea27adc0e06329e4ea7bd4c952923b04 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03f6d72a41d1ae640aeb0eb8317bb51e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Circle.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Circle_Stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Circle_Stroke.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Gradient_BottomToTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Gradient_BottomToTop.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Gradient_LeftToRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Gradient_LeftToRight.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Gradient_RightToLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Gradient_RightToLeft.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Gradient_TopToBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Gradient_TopToBottom.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Hexagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Hexagon.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Hexagon_Stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Hexagon_Stroke.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Hexagon_Stroke_Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Hexagon_Stroke_Vertical.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Hexagon_Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Hexagon_Vertical.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Octagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Octagon.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Octagon_Stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Octagon_Stroke.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Rounded.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Square.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Square_Rounded_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Square_Rounded_32px.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Square_Rounded_Outline_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Square_Rounded_Outline_32px.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Common/Square_Stroke_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Common/Square_Stroke_32px.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e8f19a975d07814eb3c620a6215f27c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Icons/T_icon_art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Icons/T_icon_art.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Icons/T_icon_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Icons/T_icon_info.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Icons/T_icon_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Icons/T_icon_link.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Icons/T_icon_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Icons/T_icon_play.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Icons/T_icon_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Icons/T_icon_share.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Icons/T_icon_volume_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Icons/T_icon_volume_off.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Icons/T_icon_volume_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Icons/T_icon_volume_on.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/Icons/T_icon_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/Icons/T_icon_x.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/T_RoundedSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/T_RoundedSquare.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Art/T_Transparent_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Modules/CoreUI/Art/T_Transparent_32.png -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d283c3350c763d4faa669e076853f24 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/InputBlocker - Dark.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd9ff69435161af47aeff112199cb1c8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/InputBlocker.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bc3104045bc859479db8b151b9dce07 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIAlert - Error.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbbf3887795f6a54890ff72ab48df62e 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIAlert - Info.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7b1f9ee1ed58c542bdf4e96fcc3c5d8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIAlert - Warning.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e9946d1a36b44649bd11a847eb2c5df 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIButton - Danger.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 236542316158e69429f6faa104dcf6d2 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIButton - Icon - X.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5d13250b4148fe41823a18fb5474638 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIButton - Icon -.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 472785906c5d19b438401e9ff77d1255 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIButton - Icon.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e3b99201f7dddf4ca1e703034b3df1b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIButton - Primary.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 844837ffd08cae941b460e9aa3340c59 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIButton - Secondary.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4c2399efdee32b4782057cbf751b43d 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIButton - Success.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f16e00c3523ca6f4ca33af9e5cf9b202 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIButton - Text Only.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 360fd22628eda9944a827c83eaaf270e 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIButton.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb51d7fbbf450954482ce205a8576a4a 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIInput - Labeless.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dda9ba559423464ea71af42b6ffdf8e 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIInput.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6e7cce5a070a1b41b821cd051127ab9 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIRuntime.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8959b806c7b7c8438ed06594b1e2ce7 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIToggle.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9b4c5debc2e10a4884f4dd6c5b8d869 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIVisualRoot.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2e128dd832e21b499f6b9a2f187aba3 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIWindow.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 901b43d3b435bdf41873b4c7919c723a 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Prefabs/UIWindowDragger.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 652c8fbfea83fa841a25ed14cf0fa747 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Readme.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: aadf8543493fd0146af5ec58c939edee, type: 3} 13 | m_Name: Readme 14 | m_EditorClassIdentifier: 15 | ModuleName: CoreUI 16 | Description: 17 | DocumentationURL: 18 | TaskManagerURL: 19 | Dependencies: [] 20 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Readme.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 785fb3a0108285341a05937ad0964202 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d7c943ef4475cb409ea89bb7f6964df 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Resources/UIResourcesCollection.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76de5a0e2e8d253469cfeee162f21097 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fc86ef583d9b4943aad044669448b5c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9aef56082438e94d91a9a21c627702f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Editor/InheritedGroupedEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8045be80b46bf5a4abfafc4a00d4c3e5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Editor/OGTEditorUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e08e11518cce4ddbb659f36ced46fdc8 3 | timeCreated: 1692464936 -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Editor/UIAnimationEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd6d4951aa6badb4c8d1758edd9be8ab 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Editor/UIButtonEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93556ff7751ec4a43b809ae3f9855a6f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Editor/UIInputEditor.cs: -------------------------------------------------------------------------------- 1 | namespace OGT.Editor 2 | { 3 | using UnityEditor; 4 | 5 | public class UIInputEditor : Editor 6 | { 7 | private const int kCreateUIInputBaseIndex = 50; 8 | private const string kCreateItemEditorPath = GameResources.kCreateUIGameObjectMenuPath + "/"; 9 | 10 | [MenuItem(kCreateItemEditorPath + "UIInput", priority = kCreateUIInputBaseIndex)] 11 | private static void CreateUIButtonGeneric() 12 | { 13 | UIResourcesCollection.TryCreateEditorUIItem("UIInput", out UIInput _); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Editor/UIInputEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c19c05a1c4ae6f44db4389f0eb56bd88 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Editor/UIItemBaseEditor.cs: -------------------------------------------------------------------------------- 1 | namespace OGT.Editor 2 | { 3 | using UnityEditor; 4 | 5 | [CustomEditor(typeof(UIItemBase), editorForChildClasses: true)] 6 | public class UIItemBaseEditor : InheritedGroupedEditor 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Editor/UIItemBaseEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8f775f342c542f7916bebe65a291eb5 3 | timeCreated: 1692417746 -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Editor/UIOtherEditor.cs: -------------------------------------------------------------------------------- 1 | using UnityEditor; 2 | using UnityEngine; 3 | 4 | namespace OGT 5 | { 6 | public class UIOtherEditor : MonoBehaviour 7 | { 8 | private const int kCreateUIOtherBaseIndex = 40; 9 | private const string kCreateItemEditorPath = GameResources.kCreateUIGameObjectMenuPath + "/"; 10 | 11 | [MenuItem(kCreateItemEditorPath + "VisualRoot", priority = kCreateUIOtherBaseIndex)] 12 | private static void CreateUIVisualRoot() 13 | { 14 | UIResourcesCollection.TryCreateEditorUnlinkedUIItem("UIVisualRoot", out UIVisualRoot _); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Editor/UIOtherEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e1cf61efe2b6e0479a55422211055ee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Editor/UIToggleEditor.cs: -------------------------------------------------------------------------------- 1 | namespace OGT.Editor 2 | { 3 | using UnityEditor; 4 | 5 | public class UIToggleEditor : Editor 6 | { 7 | private const int kCreateUIToggleBaseIndex = 60; 8 | private const string kCreateItemEditorPath = GameResources.kCreateUIGameObjectMenuPath + "/"; 9 | 10 | [MenuItem(kCreateItemEditorPath + "UIToggle", priority = kCreateUIToggleBaseIndex)] 11 | private static void CreateUIButtonGeneric() 12 | { 13 | UIResourcesCollection.TryCreateEditorUIItem("UIToggle", out UIToggle _); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Editor/UIToggleEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fab2c953e57d4aafa15130e442972934 3 | timeCreated: 1682635956 -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4683cecd080376b4eb88e3fdc6749799 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Extensions/CoreUIExtensions.cs: -------------------------------------------------------------------------------- 1 | public static class CoreUIExtensions 2 | { 3 | } -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Extensions/CoreUIExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aece499b61765eb409c0b78ac2fb41a1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Extensions/RectTransformExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cea621b056e9f8b4ab00960841d58716 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Extensions/SpriteExtensions.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public static class SpriteExtensions 4 | { 5 | public static Sprite ToSprite(this Texture2D texture) 6 | { 7 | return Sprite.Create(texture, new Rect(0, 0, texture.width, texture.height), Vector2.zero); 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Extensions/SpriteExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a67a5376de4832488cb36f66e6e3de2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Extensions/UIAnimationExtensions.cs: -------------------------------------------------------------------------------- 1 | using DG.Tweening; 2 | 3 | namespace OGT 4 | { 5 | public static class UIAnimationExtensions 6 | { 7 | public static void JoinByStepType(this Sequence sequence, ScriptableAnimationJoinType step, Tween tween) 8 | { 9 | switch (step) 10 | { 11 | default: 12 | case ScriptableAnimationJoinType.Join: 13 | sequence.Join(tween); 14 | break; 15 | case ScriptableAnimationJoinType.Append: 16 | sequence.Append(tween); 17 | break; 18 | } 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Extensions/UIAnimationExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 946c919c0a3b4ce389906966784f4e4b 3 | timeCreated: 1676757588 -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Extensions/UIExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8fa02607603bb0408114388500b9e33 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Extensions/UITabSectionExtensions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace OGT 5 | { 6 | public static class UITabSectionExtensions 7 | { 8 | public static UITabSection GetByID(this List list, string id) 9 | { 10 | return list.Find(item => item.ID.Equals(id)); 11 | } 12 | 13 | public static void Init(this List list, UITabWindow owner, Action onTabButtonClick) 14 | { 15 | foreach (UITabSection tab in list) 16 | { 17 | tab.Init(owner, onTabButtonClick); 18 | } 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Extensions/UITabSectionExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfb6c7c018ae41ac8367ee43a3a16e97 3 | timeCreated: 1681882277 -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/Extensions/UIVisualRootExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23b7fa1bc6d942f9b1766c9df2eeb74a 3 | timeCreated: 1681878450 -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/TMPs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 651eb89ef9abc7d438bd56f90fe5a226 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/TMPs/TextLinkObserver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e08b72a37cc92a469e771fe4f91ab12 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIAnimation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a7b967ec75d3d2418a25f9a57249b55 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f5bb7ec99da97a42aa8f58b49ca572a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIContentSection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdfa94f2eadee5944b1fea9ce8023516 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIElements.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78a7fb2e0fc481046a071be52ecdd641 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIElements/UIAlertPopup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35481106bf09521469273309d894b281 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIElements/UIGenericTextMessagePopup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0eed676944ed3b84aa49cd2f574afbbc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIGradient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 471f95d3ba59ccb4389539e4acca6c66 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {fileID: 10904, guid: 0000000000000000f000000000000000, type: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fff2870752e3a404c9e2f4b4e88a7478 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIInputBlocker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64a139d9febc0e24eac266d5245840a9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 977bfb16d79ad32429122800f7eed1f6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIItemBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c52aab78984e7ff4a98f4aee64761eb3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIResourceDefinitions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de337fc2c2bf92941a6be1e6fdfb0996 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIResourcesCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0f5227bf9babbf4b8fbe9c1f75733a3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIResponsiveRect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 747b0ecf2a0af964b8ed58733876272b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIRuntime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fb23a9fcebd74947b3cfa3167ccff36 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIRuntimeResponsiveness.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9afce2152f3a5f142afdb943d4fdb31e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIRuntimeTMP.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc36b4e01015ae84bacbf28870659fc6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UISettingsCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0f9ac7a9d21a4c4395e656861b648f5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UITabSection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33316716a0b4f244f9d97d4d713028ee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UITabWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b23f684c14006d54c80e360fe67faeb7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIText.cs: -------------------------------------------------------------------------------- 1 | using TMPro; 2 | 3 | namespace ORC 4 | { 5 | public partial class UIText : TextMeshProUGUI 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 158669651091baf46b3837b53d189820 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {fileID: 2800000, guid: 2fd6421f253b4ef1a19526541f9ffc0c, type: 3} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIToggle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8aeb469be956696449c4cb919e84f878 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UITooltip.cs: -------------------------------------------------------------------------------- 1 | namespace OGT 2 | { 3 | public class UITooltip : UIWindow 4 | { 5 | protected override void OnInit() 6 | { 7 | 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UITooltip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37412c2ce73e57544a479e8a9a209a00 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIVisualRoot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30a8da66bf749a14c8046716c0bfb98c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f4b455b7046b5145bd03c3b4e9b3d68 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/CoreUI/Scripts/UIWindowDragger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a1ceaea3ff56c348ba71044f9312a71 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de0cdc2c267ceed45bf6fd3ca71d29bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e137691bc2449434aa5cb8953aaee8d1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Events.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70fe3fd824037b540af9e10da6b8ab92 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Events/OnPlayerLevelChange.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: b6758c47d9205bf49be899dc3ef4c607, type: 3} 13 | m_Name: OnPlayerLevelChange 14 | m_EditorClassIdentifier: 15 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Events/OnPlayerLevelChange.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 927b3fd393e6b9c46b20876fe398bce4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Events/OnPlayerSpawn.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: b6758c47d9205bf49be899dc3ef4c607, type: 3} 13 | m_Name: OnPlayerSpawn 14 | m_EditorClassIdentifier: 15 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Events/OnPlayerSpawn.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57136e652758b0445b7935a24948ef7f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fae860226cc604b43a1ced2843a4ee16 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Acc Experience.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: ee2558ff7d66cd749999e4e493d37003, type: 3} 13 | m_Name: PlayerData Acc Experience 14 | m_EditorClassIdentifier: 15 | onChangeToggle: 0 16 | OnChangeScriptableObject: {fileID: 0} 17 | OnChangeEvent: 18 | m_PersistentCalls: 19 | m_Calls: [] 20 | _value: 0 21 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Acc Experience.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e472a584a7348904185d1ee4fb49c2b5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Acc Level.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: ee2558ff7d66cd749999e4e493d37003, type: 3} 13 | m_Name: PlayerData Acc Level 14 | m_EditorClassIdentifier: 15 | m_resetAfterRuntime: 1 16 | m_hasId: 0 17 | m_id: 0 18 | m_changeable: 1 19 | m_onChangeScriptableObject: {fileID: 11400000, guid: 927b3fd393e6b9c46b20876fe398bce4, type: 2} 20 | m_onChangeEvent: 21 | m_PersistentCalls: 22 | m_Calls: [] 23 | m_value: 0 24 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Acc Level.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad7acc90482c0d547b92cbd5185735d4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Acc Nickname.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: a9f4236b0df37ae4db685d117df0a028, type: 3} 13 | m_Name: PlayerData Acc Nickname 14 | m_EditorClassIdentifier: 15 | onChangeToggle: 0 16 | OnChangeScriptableObject: {fileID: 0} 17 | OnChangeEvent: 18 | m_PersistentCalls: 19 | m_Calls: [] 20 | _value: 21 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Acc Nickname.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa56e4e602183b24692f85ca7406448c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Stats Agility.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: ee2558ff7d66cd749999e4e493d37003, type: 3} 13 | m_Name: PlayerData Stats Agility 14 | m_EditorClassIdentifier: 15 | onChangeToggle: 0 16 | OnChangeScriptableObject: {fileID: 0} 17 | OnChangeEvent: 18 | m_PersistentCalls: 19 | m_Calls: [] 20 | _value: 0 21 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Stats Agility.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f62f07ab796f9034385df5c4730d2378 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Stats Intelligence.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: ee2558ff7d66cd749999e4e493d37003, type: 3} 13 | m_Name: PlayerData Stats Intelligence 14 | m_EditorClassIdentifier: 15 | onChangeToggle: 0 16 | OnChangeScriptableObject: {fileID: 0} 17 | OnChangeEvent: 18 | m_PersistentCalls: 19 | m_Calls: [] 20 | _value: 0 21 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Stats Intelligence.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f7cb36f1d716964f80269be722f33ef 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Stats Stamina.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: ee2558ff7d66cd749999e4e493d37003, type: 3} 13 | m_Name: PlayerData Stats Stamina 14 | m_EditorClassIdentifier: 15 | onChangeToggle: 0 16 | OnChangeScriptableObject: {fileID: 0} 17 | OnChangeEvent: 18 | m_PersistentCalls: 19 | m_Calls: [] 20 | _value: 0 21 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Stats Stamina.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e428be36b2c1f7144b6e4fdb8dbe88b6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Stats Strength.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: ee2558ff7d66cd749999e4e493d37003, type: 3} 13 | m_Name: PlayerData Stats Strength 14 | m_EditorClassIdentifier: 15 | onChangeToggle: 0 16 | OnChangeScriptableObject: {fileID: 0} 17 | OnChangeEvent: 18 | m_PersistentCalls: 19 | m_Calls: [] 20 | _value: 0 21 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Stats Strength.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d18e8ba2734b55e45a800476406c6d9a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Wallet Credits.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: ee2558ff7d66cd749999e4e493d37003, type: 3} 13 | m_Name: PlayerData Wallet Credits 14 | m_EditorClassIdentifier: 15 | onChangeToggle: 0 16 | OnChangeScriptableObject: {fileID: 0} 17 | OnChangeEvent: 18 | m_PersistentCalls: 19 | m_Calls: [] 20 | _value: 0 21 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Wallet Credits.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a5723c36f75cf44ab22c3b75e58e6ae 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Wallet Currency.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: ee2558ff7d66cd749999e4e493d37003, type: 3} 13 | m_Name: PlayerData Wallet Currency 14 | m_EditorClassIdentifier: 15 | onChangeToggle: 0 16 | OnChangeScriptableObject: {fileID: 0} 17 | OnChangeEvent: 18 | m_PersistentCalls: 19 | m_Calls: [] 20 | _value: 0 21 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData Wallet Currency.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 965b149a456193245a797963953687e7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Data/Variables/PlayerData.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c3f9f32396c3f34483d36745cf85f6a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae878ff792522254b9459e0d3f42aa40 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Resources/ScriptableVariablesResourcesCollection.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: ea0a35fc717ae1b418c0b24dc031f91b, type: 3} 13 | m_Name: ScriptableVariablesResourcesCollection 14 | m_EditorClassIdentifier: 15 | m_playerData: {fileID: 11400000, guid: 1c3f9f32396c3f34483d36745cf85f6a, type: 2} 16 | m_players: 17 | - {fileID: 11400000, guid: 1c3f9f32396c3f34483d36745cf85f6a, type: 2} 18 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Resources/ScriptableVariablesResourcesCollection.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cf7b41a760dbd243878c3eaa4970c6b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25e9cd0fbacc44c4a9a4b992e39f25e5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d14e07c87885de42a6b287a8588f0ad 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/.idea/.idea.Core.dir/.idea/contentModel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/.idea/.idea.Core.dir/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/.idea/.idea.Core.dir/.idea/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/.idea/.idea.Core.dir/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/.idea/.idea.Core.dir/.idea/projectSettingsUpdater.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/.idea/.idea.Core.dir/.idea/riderModule.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/.idea/.idea.Core.dir/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Collections.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 402629b782bd68a48a65960a4c13bb14 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Collections/AudioClipsCollection.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | [CreateAssetMenu(menuName = GameResources.kCreateMenuPrefixName + "Collection/AudioClips")] 6 | public class AudioClipsCollection : BaseCollection 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Collections/AudioClipsCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: add92a622f4c78248b03249c8a93b56f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Collections/BaseCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dac381bc8659e044cafeddfa68634e47 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Collections/StringVariablesCollection.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | [CreateAssetMenu(menuName = GameResources.kCreateMenuPrefixName + "Collection/StringVariables")] 6 | public class StringVariablesCollection : BaseCollection 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Collections/StringVariablesCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be2ec3e151d4ccf4c9f362c2a639a7d9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Collections/StringsCollection.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | [CreateAssetMenu(menuName = GameResources.kCreateMenuPrefixName + "Collection/Strings")] 6 | public class StringsCollection : BaseCollection 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Collections/StringsCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6baabf6f1842bc94788f6f1d80c413e3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Events.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07dabeeb291561042b8161a95e87d94b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Events/EventsManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0fd7e5078d7aee46ab7c30108be0354 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Events/GameEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6758c47d9205bf49be899dc3ef4c607 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Events/GameEventListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7490035b9347bf543b2b8413206e73f3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Interfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d7815af91a662149b7938c6a67ca93c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Interfaces/IIdentifiable.cs: -------------------------------------------------------------------------------- 1 | namespace OGT 2 | { 3 | public interface IIdentifiable 4 | { 5 | public bool HasID { get; } 6 | public int ID { get; } 7 | } 8 | } -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Interfaces/IIdentifiable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c92f55b4383a300488ce0bcb482ac4ec 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/ScriptableVariableBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97937b1d6e7b6dd4eb8e79f9bb5fe9c5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/ScriptableVariableBaseMono.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddf2df96c197a5f42a0db8f156d6b56d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/ScriptableVariablesResourceDefinitions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e93ae32cd25300a49b4d9b6d281fd154 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/ScriptableVariablesResourcesCollection.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using UnityEngine; 3 | 4 | namespace OGT 5 | { 6 | [CreateAssetMenu(fileName = nameof(ScriptableVariablesResourcesCollection), menuName = OGTConstants.kCreateMenuPrefixNameResources + nameof(ScriptableVariablesResourcesCollection))] 7 | public class ScriptableVariablesResourcesCollection : ScriptableObject 8 | { 9 | public PlayerData m_playerData; 10 | public List m_players = new List(); 11 | } 12 | } -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/ScriptableVariablesResourcesCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea0a35fc717ae1b418c0b24dc031f91b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3c1124cbfe81574288d7b45ec6a0e98 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/AnimationCurveVariable.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | [CreateAssetMenu(menuName = GameResources.kCreateMenuPrefixNameVariables + "AnimationCurve")] 6 | public class AnimationCurveVariable : BaseVariable 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/AnimationCurveVariable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c0cc8a9ec2a0bc4b8d51c84b4dd7f2e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/AudioClipVariable.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | [CreateAssetMenu(menuName = GameResources.kCreateMenuPrefixNameVariables + "AudioClip")] 6 | public class AudioClipVariable : BaseVariable 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/AudioClipVariable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be12aa0fa9836bf488edfa6b62fbef14 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/BaseVariable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7922c85c34d64494ba2ef5eff88e520c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/ColorVariable.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | [CreateAssetMenu(menuName = GameResources.kCreateMenuPrefixNameVariables + "Color")] 6 | public class ColorVariable : BaseVariable 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/ColorVariable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4298db7f1563ad4c8abeb9efa3ec67a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/FloatVariable.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | [CreateAssetMenu(menuName = GameResources.kCreateMenuPrefixNameVariables + "Float")] 6 | public class FloatVariable : BaseVariable 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/FloatVariable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26e99c4e42cf71b4f8e56eb4bb804ca0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/GameObjectVariable.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | [CreateAssetMenu(menuName = GameResources.kCreateMenuPrefixNameVariables + "GameObject")] 6 | public class GameObjectVariable : BaseVariable 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/GameObjectVariable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3aeca0ba4435d94b9c0b57d8eb6cf38 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/IntVariable.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | [CreateAssetMenu(menuName = GameResources.kCreateMenuPrefixNameVariables + "Int")] 6 | public class IntVariable : BaseVariable 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/IntVariable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee2558ff7d66cd749999e4e493d37003 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/StringVariable.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace OGT 4 | { 5 | [CreateAssetMenu(menuName = GameResources.kCreateMenuPrefixNameVariables + "String")] 6 | public class StringVariable : BaseVariable 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Core/Variables/StringVariable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9f4236b0df37ae4db685d117df0a028 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Player.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acefc113446331f4ba4c72d0ce22261f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Player/PlayerController.cs: -------------------------------------------------------------------------------- 1 |  2 | using UnityEngine; 3 | 4 | namespace OGT 5 | { 6 | public class PlayerController : ScriptableVariableBaseMono 7 | { 8 | public PlayerData m_data; 9 | 10 | public void Build(PlayerData newData = null) 11 | { 12 | if (newData != null) 13 | { 14 | m_data = newData; 15 | } 16 | 17 | if (m_data == null) 18 | { 19 | Debug.LogError($"Data '{this.name}' not found - Build()", this); 20 | return; 21 | } 22 | 23 | m_data.Instance = this; 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Player/PlayerController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cb6364a688a9584997298b190059e6f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/ScriptableVariables/Scripts/Player/PlayerData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b66a5aa4db7831a47813c5bd0a247b35 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Modules/User/Scripts/UserAuthOperation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d036859410bac1e40b5c76a0cdbdfbf1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /SDK/Prototype.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8907cfe907854a34aa5c96712bdafcce 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8215ae5391259a9419846ad3c8100e8f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/prototype_dark_01.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5155b5c33ad38094da0f38e5d903252a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/prototype_dark_01_10x10.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efb7b8932263b72489b096c9852c1830 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/prototype_dark_02.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2fd490216b175f4ea76a2fa5d4a30f7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/prototype_dark_03.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54a62a2b8494dca42a91938856c3635b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/prototype_dark_04.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed4f6fad89f104148a083ccecfdd60a9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/prototype_dark_05.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6709fa55de2014429576e7f7dd5a154 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/prototype_dark_06.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1c816e01c267b846b3489b391a81c54 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/prototype_dark_07.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: beb429558cf94e641a8f30a00d7b752a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/prototype_dark_08.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81af49ebb53c95548b682f18162601d0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/prototype_dark_09.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 851b71a57094f9445855d3b3c8832832 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/prototype_dark_10.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34bfa4551102cd2448a5c0eef8fb6ac0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/prototype_dark_11.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39a4eb471461338499099a9a5c97616d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/prototype_dark_12.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b3e35426652ae84b8bd58aa443a7b9e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/prototype_dark_13.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ab0826b986c7164fb5c77d5195e78cc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Dark/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Dark/texture_01.png -------------------------------------------------------------------------------- /SDK/Prototype/Dark/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Dark/texture_02.png -------------------------------------------------------------------------------- /SDK/Prototype/Dark/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Dark/texture_03.png -------------------------------------------------------------------------------- /SDK/Prototype/Dark/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Dark/texture_04.png -------------------------------------------------------------------------------- /SDK/Prototype/Dark/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Dark/texture_05.png -------------------------------------------------------------------------------- /SDK/Prototype/Dark/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Dark/texture_06.png -------------------------------------------------------------------------------- /SDK/Prototype/Dark/texture_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Dark/texture_07.png -------------------------------------------------------------------------------- /SDK/Prototype/Dark/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Dark/texture_08.png -------------------------------------------------------------------------------- /SDK/Prototype/Dark/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Dark/texture_09.png -------------------------------------------------------------------------------- /SDK/Prototype/Dark/texture_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Dark/texture_10.png -------------------------------------------------------------------------------- /SDK/Prototype/Dark/texture_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Dark/texture_11.png -------------------------------------------------------------------------------- /SDK/Prototype/Dark/texture_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Dark/texture_12.png -------------------------------------------------------------------------------- /SDK/Prototype/Dark/texture_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Dark/texture_13.png -------------------------------------------------------------------------------- /SDK/Prototype/Green.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b20e17c40c6557a469177b1be2600adc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/prototype_green_01.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a2049040fa3dc844921ab6563fb554d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/prototype_green_01_10x10.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8865d719e852ab641bb0346f4149d76e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/prototype_green_02.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f513fc90fd5fcc54c94f07a500cee598 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/prototype_green_03.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7060b72a27f6285428f8690f88a06984 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/prototype_green_04.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf78cbe064bd2d5499feb1fb88922232 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/prototype_green_05.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fe5765173d3f0d48b54475fa5136736 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/prototype_green_06.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75da1365cbd34fd45bc56bc63627baf2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/prototype_green_07.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b82df6794b68c846961acf7b9c5e5ba 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/prototype_green_08.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84efc8bd56cfe634795df3dc736ee2ae 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/prototype_green_09.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e24fd5c14b436043910f19785ff0d57 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/prototype_green_10.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cc34e600243ae74a8242a7874e5bc3d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/prototype_green_11.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40a32bd3ba7f00744a47bb63709cfd3e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/prototype_green_12.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e67071f306c829448b01aecdc7fa71a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/prototype_green_13.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa77ee41e78b8af45a6dfffda44a5c56 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Green/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Green/texture_01.png -------------------------------------------------------------------------------- /SDK/Prototype/Green/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Green/texture_02.png -------------------------------------------------------------------------------- /SDK/Prototype/Green/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Green/texture_03.png -------------------------------------------------------------------------------- /SDK/Prototype/Green/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Green/texture_04.png -------------------------------------------------------------------------------- /SDK/Prototype/Green/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Green/texture_05.png -------------------------------------------------------------------------------- /SDK/Prototype/Green/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Green/texture_06.png -------------------------------------------------------------------------------- /SDK/Prototype/Green/texture_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Green/texture_07.png -------------------------------------------------------------------------------- /SDK/Prototype/Green/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Green/texture_08.png -------------------------------------------------------------------------------- /SDK/Prototype/Green/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Green/texture_09.png -------------------------------------------------------------------------------- /SDK/Prototype/Green/texture_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Green/texture_10.png -------------------------------------------------------------------------------- /SDK/Prototype/Green/texture_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Green/texture_11.png -------------------------------------------------------------------------------- /SDK/Prototype/Green/texture_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Green/texture_12.png -------------------------------------------------------------------------------- /SDK/Prototype/Green/texture_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Green/texture_13.png -------------------------------------------------------------------------------- /SDK/Prototype/Light.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cfd9b8e3f158d04db9495d64de05879 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Light/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Light/texture_01.png -------------------------------------------------------------------------------- /SDK/Prototype/Light/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Light/texture_02.png -------------------------------------------------------------------------------- /SDK/Prototype/Light/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Light/texture_03.png -------------------------------------------------------------------------------- /SDK/Prototype/Light/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Light/texture_04.png -------------------------------------------------------------------------------- /SDK/Prototype/Light/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Light/texture_05.png -------------------------------------------------------------------------------- /SDK/Prototype/Light/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Light/texture_06.png -------------------------------------------------------------------------------- /SDK/Prototype/Light/texture_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Light/texture_07.png -------------------------------------------------------------------------------- /SDK/Prototype/Light/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Light/texture_08.png -------------------------------------------------------------------------------- /SDK/Prototype/Light/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Light/texture_09.png -------------------------------------------------------------------------------- /SDK/Prototype/Light/texture_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Light/texture_10.png -------------------------------------------------------------------------------- /SDK/Prototype/Light/texture_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Light/texture_11.png -------------------------------------------------------------------------------- /SDK/Prototype/Light/texture_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Light/texture_12.png -------------------------------------------------------------------------------- /SDK/Prototype/Light/texture_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Light/texture_13.png -------------------------------------------------------------------------------- /SDK/Prototype/Orange.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40b68498a79696446914764a3c90cd5f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Orange/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Orange/texture_01.png -------------------------------------------------------------------------------- /SDK/Prototype/Orange/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Orange/texture_02.png -------------------------------------------------------------------------------- /SDK/Prototype/Orange/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Orange/texture_03.png -------------------------------------------------------------------------------- /SDK/Prototype/Orange/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Orange/texture_04.png -------------------------------------------------------------------------------- /SDK/Prototype/Orange/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Orange/texture_05.png -------------------------------------------------------------------------------- /SDK/Prototype/Orange/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Orange/texture_06.png -------------------------------------------------------------------------------- /SDK/Prototype/Orange/texture_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Orange/texture_07.png -------------------------------------------------------------------------------- /SDK/Prototype/Orange/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Orange/texture_08.png -------------------------------------------------------------------------------- /SDK/Prototype/Orange/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Orange/texture_09.png -------------------------------------------------------------------------------- /SDK/Prototype/Orange/texture_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Orange/texture_10.png -------------------------------------------------------------------------------- /SDK/Prototype/Orange/texture_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Orange/texture_11.png -------------------------------------------------------------------------------- /SDK/Prototype/Orange/texture_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Orange/texture_12.png -------------------------------------------------------------------------------- /SDK/Prototype/Orange/texture_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Orange/texture_13.png -------------------------------------------------------------------------------- /SDK/Prototype/Purple.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c6a703ec3785d748b6e75af651529c7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Purple/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Purple/texture_01.png -------------------------------------------------------------------------------- /SDK/Prototype/Purple/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Purple/texture_02.png -------------------------------------------------------------------------------- /SDK/Prototype/Purple/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Purple/texture_03.png -------------------------------------------------------------------------------- /SDK/Prototype/Purple/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Purple/texture_04.png -------------------------------------------------------------------------------- /SDK/Prototype/Purple/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Purple/texture_05.png -------------------------------------------------------------------------------- /SDK/Prototype/Purple/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Purple/texture_06.png -------------------------------------------------------------------------------- /SDK/Prototype/Purple/texture_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Purple/texture_07.png -------------------------------------------------------------------------------- /SDK/Prototype/Purple/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Purple/texture_08.png -------------------------------------------------------------------------------- /SDK/Prototype/Purple/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Purple/texture_09.png -------------------------------------------------------------------------------- /SDK/Prototype/Purple/texture_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Purple/texture_10.png -------------------------------------------------------------------------------- /SDK/Prototype/Purple/texture_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Purple/texture_11.png -------------------------------------------------------------------------------- /SDK/Prototype/Purple/texture_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Purple/texture_12.png -------------------------------------------------------------------------------- /SDK/Prototype/Purple/texture_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Purple/texture_13.png -------------------------------------------------------------------------------- /SDK/Prototype/Red.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5dcd98f6d7c762a4b81db7f919db192c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Red/prototype_red_10.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a04d1c5b69c9e4143b239e51d566de06 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /SDK/Prototype/Red/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Red/texture_01.png -------------------------------------------------------------------------------- /SDK/Prototype/Red/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Red/texture_02.png -------------------------------------------------------------------------------- /SDK/Prototype/Red/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Red/texture_03.png -------------------------------------------------------------------------------- /SDK/Prototype/Red/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Red/texture_04.png -------------------------------------------------------------------------------- /SDK/Prototype/Red/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Red/texture_05.png -------------------------------------------------------------------------------- /SDK/Prototype/Red/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Red/texture_06.png -------------------------------------------------------------------------------- /SDK/Prototype/Red/texture_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Red/texture_07.png -------------------------------------------------------------------------------- /SDK/Prototype/Red/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Red/texture_08.png -------------------------------------------------------------------------------- /SDK/Prototype/Red/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Red/texture_09.png -------------------------------------------------------------------------------- /SDK/Prototype/Red/texture_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Red/texture_10.png -------------------------------------------------------------------------------- /SDK/Prototype/Red/texture_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Red/texture_11.png -------------------------------------------------------------------------------- /SDK/Prototype/Red/texture_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Red/texture_12.png -------------------------------------------------------------------------------- /SDK/Prototype/Red/texture_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenDNDApps/OpenGameTools/c98c82a8186ebe7afff66ca4b7d7d2caf626ce71/SDK/Prototype/Red/texture_13.png -------------------------------------------------------------------------------- /SDK/Prototype/Terrain.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5b8cacf76aef9444bc11965e789fe14 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /_config.yml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95dd09528ff26b04ab5340c3ccd3c1de 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | All notable changes to this project will be documented in this file. 3 | 4 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 5 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 6 | 7 | ## [Unreleased] 8 | 9 | ## [0.1.0] - 2019-12-24 10 | ### Added 11 | - New changelog. 12 | - Version navigation. 13 | 14 | ### Changed 15 | - Start using "changelog". 16 | 17 | ### Removed 18 | - Section about "changelog" vs "CHANGELOG". 19 | -------------------------------------------------------------------------------- /contributing.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b2bb2524aa389f4bb829cbd125713a0 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | --------------------------------------------------------------------------------