├── .gitignore ├── Core.meta ├── Core ├── External.meta ├── External │ ├── Extensions.RectTransform.cs │ ├── Extensions.RectTransform.cs.meta │ ├── Extensions.SerializedProperty.cs │ ├── Extensions.SerializedProperty.cs.meta │ ├── Extensions.Utility.cs │ └── Extensions.Utility.cs.meta ├── Prefabs.meta ├── Prefabs │ ├── GalCoreUGUI.prefab │ └── GalCoreUGUI.prefab.meta ├── Resources.meta ├── Resources │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── ArchiveBackground.prefab │ │ ├── ArchiveBackground.prefab.meta │ │ ├── DemoSpeak.prefab │ │ ├── DemoSpeak.prefab.meta │ │ ├── GfuDemoOptionView.prefab │ │ ├── GfuDemoOptionView.prefab.meta │ │ ├── Image.prefab │ │ ├── Image.prefab.meta │ │ ├── LoadingImage.prefab │ │ └── LoadingImage.prefab.meta │ ├── Textures.meta │ └── Textures │ │ ├── anchor.png │ │ ├── anchor.png.meta │ │ ├── poseDefault.png │ │ ├── poseDefault.png.meta │ │ ├── textbox.png │ │ └── textbox.png.meta ├── Scripts.meta └── Scripts │ ├── Block.meta │ ├── Block │ ├── AudioBlock.cs │ ├── AudioBlock.cs.meta │ ├── PlotBlock.cs │ ├── PlotBlock.cs.meta │ ├── SpriteBlock.cs │ ├── SpriteBlock.cs.meta │ ├── VideoBlock.cs │ └── VideoBlock.cs.meta │ ├── Editor.meta │ ├── Editor │ ├── Attributes.meta │ ├── Attributes │ │ ├── AddComponentAttribute.cs │ │ ├── AddComponentAttribute.cs.meta │ │ ├── ButtonAttribute.cs │ │ ├── ButtonAttribute.cs.meta │ │ ├── EnumLabelAttribute.cs │ │ ├── EnumLabelAttribute.cs.meta │ │ ├── HideByAttribute.cs │ │ ├── HideByAttribute.cs.meta │ │ ├── NodeEditor.cs │ │ ├── NodeEditor.cs.meta │ │ ├── NodeRenameAttribute.cs │ │ ├── NodeRenameAttribute.cs.meta │ │ ├── ReadOnlyAttribute.cs │ │ ├── ReadOnlyAttribute.cs.meta │ │ ├── RenameAttribute.cs │ │ └── RenameAttribute.cs.meta │ ├── IMGUI.meta │ ├── IMGUI │ │ ├── AttributeDrawer.cs │ │ ├── AttributeDrawer.cs.meta │ │ ├── BaseEditor.cs │ │ ├── BaseEditor.cs.meta │ │ ├── HidebyEditor.cs │ │ ├── HidebyEditor.cs.meta │ │ ├── InstanceIDStorageEditor.cs │ │ ├── InstanceIDStorageEditor.cs.meta │ │ ├── RenameEditor.cs │ │ ├── RenameEditor.cs.meta │ │ ├── RenameEditorData.cs │ │ ├── RenameEditorData.cs.meta │ │ ├── SavableConfigEditor.cs │ │ ├── SavableConfigEditor.cs.meta │ │ ├── SerializedPropExtension.cs │ │ └── SerializedPropExtension.cs.meta │ ├── UIElements.meta │ └── UIElements │ │ ├── CreatePoseWizard.cs │ │ ├── CreatePoseWizard.cs.meta │ │ ├── CreatePoseWizard.uss │ │ ├── CreatePoseWizard.uss.meta │ │ ├── CreatePoseWizard.uxml │ │ ├── CreatePoseWizard.uxml.meta │ │ ├── DragObjectField.cs │ │ ├── DragObjectField.cs.meta │ │ ├── DragObjectField.uss │ │ ├── DragObjectField.uss.meta │ │ ├── GalContextualMenuManager.cs │ │ ├── GalContextualMenuManager.cs.meta │ │ ├── GalPrefs.cs │ │ ├── GalPrefs.cs.meta │ │ ├── GalSetting.cs │ │ ├── GalSetting.cs.meta │ │ ├── PoseBindingAnchor.cs │ │ ├── PoseBindingAnchor.cs.meta │ │ ├── PoseBindingItem.uxml │ │ ├── PoseBindingItem.uxml.meta │ │ ├── PoseBindingList.cs │ │ ├── PoseBindingList.cs.meta │ │ ├── PoseBindingPoint.cs │ │ ├── PoseBindingPoint.cs.meta │ │ ├── PoseBindingPoint.uss │ │ ├── PoseBindingPoint.uss.meta │ │ ├── PoseBindingPoint.uxml │ │ ├── PoseBindingPoint.uxml.meta │ │ ├── PoseList.cs │ │ ├── PoseList.cs.meta │ │ ├── PoseView.cs │ │ ├── PoseView.cs.meta │ │ ├── RoleWizard.cs │ │ ├── RoleWizard.cs.meta │ │ ├── RoleWizard.uss │ │ ├── RoleWizard.uss.meta │ │ ├── RoleWizard.uxml │ │ └── RoleWizard.uxml.meta │ ├── GalCore.cs │ ├── GalCore.cs.meta │ ├── GalCoreUGUI.cs │ ├── GalCoreUGUI.cs.meta │ ├── GalInstanceManager.cs │ ├── GalInstanceManager.cs.meta │ ├── GalSynchronizationContext.cs │ ├── GalSynchronizationContext.cs.meta │ ├── Gender.cs │ ├── Gender.cs.meta │ ├── ICoreIO.cs │ ├── ICoreIO.cs.meta │ ├── RoleAssets.cs │ ├── RoleAssets.cs.meta │ ├── RoleDB.cs │ ├── RoleDB.cs.meta │ ├── RoleUGUI.cs │ └── RoleUGUI.cs.meta ├── Framework.meta ├── Framework ├── Controller.meta ├── Controller │ ├── OptionController.cs │ └── OptionController.cs.meta ├── GameSystem.cs ├── GameSystem.cs.meta ├── GameTime.cs ├── GameTime.cs.meta ├── GfuApplicationInfo.cs ├── GfuApplicationInfo.cs.meta ├── GfuInstanceManager.cs ├── GfuInstanceManager.cs.meta ├── GfuLanguage.cs ├── GfuLanguage.cs.meta ├── GfuObjectPool.cs ├── GfuObjectPool.cs.meta ├── GraphSystem.cs ├── GraphSystem.cs.meta ├── View.meta └── View │ ├── BackgroundAutoSize.cs │ ├── BackgroundAutoSize.cs.meta │ ├── ShowPlotView.cs │ ├── ShowPlotView.cs.meta │ ├── SpeakTransition.cs │ ├── SpeakTransition.cs.meta │ ├── UIEventTrigger.cs │ └── UIEventTrigger.cs.meta ├── Graph.meta ├── Graph ├── AssetGraph.cs ├── AssetGraph.cs.meta ├── Attributes.meta ├── Attributes │ ├── DefaultValueAttribute.cs │ ├── DefaultValueAttribute.cs.meta │ ├── NodeFieldTypeAttribute.cs │ ├── NodeFieldTypeAttribute.cs.meta │ ├── NodeType.cs │ └── NodeType.cs.meta ├── Editor.meta ├── Editor │ ├── Block.meta │ ├── Block │ │ ├── .idea │ │ │ └── .idea.Block.dir │ │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── encodings.xml │ │ │ │ ├── indexLayout.xml │ │ │ │ └── vcs.xml │ │ ├── AudioBlockEditorUxml.cs │ │ ├── AudioBlockEditorUxml.cs.meta │ │ ├── BlockClickSelector.cs │ │ ├── BlockClickSelector.cs.meta │ │ ├── BlockContentUxml.cs │ │ ├── BlockContentUxml.cs.meta │ │ ├── BlockPortUxml.cs │ │ ├── BlockPortUxml.cs.meta │ │ ├── DraggableBlockEditor.cs │ │ ├── DraggableBlockEditor.cs.meta │ │ ├── GfuConfigFieldUXml.cs │ │ ├── GfuConfigFieldUXml.cs.meta │ │ ├── GfuTogglePort.cs │ │ ├── GfuTogglePort.cs.meta │ │ ├── IGalBlockEditor.cs │ │ ├── IGalBlockEditor.cs.meta │ │ ├── NameDropdownField.cs │ │ ├── NameDropdownField.cs.meta │ │ ├── PlotBlockEditorUxml.cs │ │ ├── PlotBlockEditorUxml.cs.meta │ │ ├── PortableBlockEditor.cs │ │ ├── PortableBlockEditor.cs.meta │ │ ├── ResourceHandler.cs │ │ ├── ResourceHandler.cs.meta │ │ ├── UxmlHandler.cs │ │ ├── UxmlHandler.cs.meta │ │ ├── VideoBlockEditorUxml.cs │ │ └── VideoBlockEditorUxml.cs.meta │ ├── Builder.meta │ ├── Builder │ │ ├── GalGraphView.cs │ │ ├── GalGraphView.cs.meta │ │ ├── GalGraphWindow.cs │ │ ├── GalGraphWindow.cs.meta │ │ ├── GalPort.cs │ │ ├── GalPort.cs.meta │ │ ├── INodeRuntimeProviderBase.cs │ │ ├── INodeRuntimeProviderBase.cs.meta │ │ ├── PortList.cs │ │ ├── PortList.cs.meta │ │ ├── SearchProviders.meta │ │ └── SearchProviders │ │ │ ├── BlockFieldSearchProvider.cs │ │ │ ├── BlockFieldSearchProvider.cs.meta │ │ │ ├── PoseAdditionSearchTypeProvider.cs │ │ │ ├── PoseAdditionSearchTypeProvider.cs.meta │ │ │ ├── SearchMenuWindowProvider.cs │ │ │ └── SearchMenuWindowProvider.cs.meta │ ├── ConfigAdditions.meta │ ├── ConfigAdditions │ │ ├── AdditionPoseUxml.cs │ │ ├── AdditionPoseUxml.cs.meta │ │ ├── AdditionPositionUxml.cs │ │ ├── AdditionPositionUxml.cs.meta │ │ ├── AdditionRoleVoiceUxml.cs │ │ ├── AdditionRoleVoiceUxml.cs.meta │ │ ├── ConfigAdditionUxml.cs │ │ ├── ConfigAdditionUxml.cs.meta │ │ ├── FieldContainer.cs │ │ └── FieldContainer.cs.meta │ ├── FBinder.cs │ ├── FBinder.cs.meta │ ├── Nodes.meta │ ├── Nodes │ │ ├── CustomNode.cs │ │ ├── CustomNode.cs.meta │ │ ├── EditorNode.cs │ │ ├── EditorNode.cs.meta │ │ ├── GfuNode.cs │ │ ├── GfuNode.cs.meta │ │ ├── IInitialize.cs │ │ ├── IInitialize.cs.meta │ │ ├── MainNode.cs │ │ ├── MainNode.cs.meta │ │ ├── PlotBlockSearchProvider.cs │ │ ├── PlotBlockSearchProvider.cs.meta │ │ ├── PlotNode.cs │ │ └── PlotNode.cs.meta │ ├── Uss.meta │ ├── Uss │ │ ├── GalGraphWindow.uss │ │ ├── GalGraphWindow.uss.meta │ │ ├── GfuConfigFieldUss.uss │ │ ├── GfuConfigFieldUss.uss.meta │ │ ├── GfuTogglePortUss.uss │ │ ├── GfuTogglePortUss.uss.meta │ │ ├── PlotBlock.uss │ │ ├── PlotBlock.uss.meta │ │ ├── PlotNodeUss.uss │ │ └── PlotNodeUss.uss.meta │ ├── Uxml.meta │ └── Uxml │ │ ├── ConfigAddition.uxml │ │ ├── ConfigAddition.uxml.meta │ │ ├── DraggableBlock.uxml │ │ ├── DraggableBlock.uxml.meta │ │ ├── GalGraphWindow.uxml │ │ ├── GalGraphWindow.uxml.meta │ │ ├── PlotBlock.uxml │ │ └── PlotBlock.uxml.meta ├── GalGraph.cs ├── GalGraph.cs.meta ├── GalGraphAsset.cs ├── GalGraphAsset.cs.meta ├── GalNodeAsset.cs ├── GalNodeAsset.cs.meta ├── GalPortAsset.cs ├── GalPortAsset.cs.meta ├── Nodes.meta ├── Nodes │ ├── IRuntimeNode.cs │ ├── IRuntimeNode.cs.meta │ ├── MainNode.cs │ ├── MainNode.cs.meta │ ├── PlayGraphNode.cs │ ├── PlayGraphNode.cs.meta │ ├── PlotNode.cs │ ├── PlotNode.cs.meta │ ├── PortDefinition.cs │ ├── PortDefinition.cs.meta │ ├── ProbabilityNode.cs │ ├── ProbabilityNode.cs.meta │ ├── RuntimeNode.cs │ └── RuntimeNode.cs.meta ├── PortValue.cs ├── PortValue.cs.meta ├── SceneGraph.cs └── SceneGraph.cs.meta ├── LICENSE ├── LICENSE.meta ├── README.md ├── README.md.meta ├── ResourceHandler.asset ├── ResourceHandler.asset.meta ├── UxmlHandler.asset ├── UxmlHandler.asset.meta ├── com.muxigame.galforunity.asmdef └── com.muxigame.galforunity.asmdef.meta /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/.gitignore -------------------------------------------------------------------------------- /Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core.meta -------------------------------------------------------------------------------- /Core/External.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/External.meta -------------------------------------------------------------------------------- /Core/External/Extensions.RectTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/External/Extensions.RectTransform.cs -------------------------------------------------------------------------------- /Core/External/Extensions.RectTransform.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/External/Extensions.RectTransform.cs.meta -------------------------------------------------------------------------------- /Core/External/Extensions.SerializedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/External/Extensions.SerializedProperty.cs -------------------------------------------------------------------------------- /Core/External/Extensions.SerializedProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/External/Extensions.SerializedProperty.cs.meta -------------------------------------------------------------------------------- /Core/External/Extensions.Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/External/Extensions.Utility.cs -------------------------------------------------------------------------------- /Core/External/Extensions.Utility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/External/Extensions.Utility.cs.meta -------------------------------------------------------------------------------- /Core/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Prefabs.meta -------------------------------------------------------------------------------- /Core/Prefabs/GalCoreUGUI.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Prefabs/GalCoreUGUI.prefab -------------------------------------------------------------------------------- /Core/Prefabs/GalCoreUGUI.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Prefabs/GalCoreUGUI.prefab.meta -------------------------------------------------------------------------------- /Core/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources.meta -------------------------------------------------------------------------------- /Core/Resources/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Prefabs.meta -------------------------------------------------------------------------------- /Core/Resources/Prefabs/ArchiveBackground.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Prefabs/ArchiveBackground.prefab -------------------------------------------------------------------------------- /Core/Resources/Prefabs/ArchiveBackground.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Prefabs/ArchiveBackground.prefab.meta -------------------------------------------------------------------------------- /Core/Resources/Prefabs/DemoSpeak.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Prefabs/DemoSpeak.prefab -------------------------------------------------------------------------------- /Core/Resources/Prefabs/DemoSpeak.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Prefabs/DemoSpeak.prefab.meta -------------------------------------------------------------------------------- /Core/Resources/Prefabs/GfuDemoOptionView.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Prefabs/GfuDemoOptionView.prefab -------------------------------------------------------------------------------- /Core/Resources/Prefabs/GfuDemoOptionView.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Prefabs/GfuDemoOptionView.prefab.meta -------------------------------------------------------------------------------- /Core/Resources/Prefabs/Image.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Prefabs/Image.prefab -------------------------------------------------------------------------------- /Core/Resources/Prefabs/Image.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Prefabs/Image.prefab.meta -------------------------------------------------------------------------------- /Core/Resources/Prefabs/LoadingImage.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Prefabs/LoadingImage.prefab -------------------------------------------------------------------------------- /Core/Resources/Prefabs/LoadingImage.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Prefabs/LoadingImage.prefab.meta -------------------------------------------------------------------------------- /Core/Resources/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Textures.meta -------------------------------------------------------------------------------- /Core/Resources/Textures/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Textures/anchor.png -------------------------------------------------------------------------------- /Core/Resources/Textures/anchor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Textures/anchor.png.meta -------------------------------------------------------------------------------- /Core/Resources/Textures/poseDefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Textures/poseDefault.png -------------------------------------------------------------------------------- /Core/Resources/Textures/poseDefault.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Textures/poseDefault.png.meta -------------------------------------------------------------------------------- /Core/Resources/Textures/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Textures/textbox.png -------------------------------------------------------------------------------- /Core/Resources/Textures/textbox.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Resources/Textures/textbox.png.meta -------------------------------------------------------------------------------- /Core/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts.meta -------------------------------------------------------------------------------- /Core/Scripts/Block.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Block.meta -------------------------------------------------------------------------------- /Core/Scripts/Block/AudioBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Block/AudioBlock.cs -------------------------------------------------------------------------------- /Core/Scripts/Block/AudioBlock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Block/AudioBlock.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Block/PlotBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Block/PlotBlock.cs -------------------------------------------------------------------------------- /Core/Scripts/Block/PlotBlock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Block/PlotBlock.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Block/SpriteBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Block/SpriteBlock.cs -------------------------------------------------------------------------------- /Core/Scripts/Block/SpriteBlock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Block/SpriteBlock.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Block/VideoBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Block/VideoBlock.cs -------------------------------------------------------------------------------- /Core/Scripts/Block/VideoBlock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Block/VideoBlock.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/AddComponentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/AddComponentAttribute.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/AddComponentAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/AddComponentAttribute.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/ButtonAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/ButtonAttribute.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/ButtonAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/ButtonAttribute.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/EnumLabelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/EnumLabelAttribute.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/EnumLabelAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/EnumLabelAttribute.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/HideByAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/HideByAttribute.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/HideByAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1832013e5ab43c990d8b3174049a77f 3 | timeCreated: 1636784851 -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/NodeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/NodeEditor.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/NodeEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/NodeEditor.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/NodeRenameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/NodeRenameAttribute.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/NodeRenameAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/NodeRenameAttribute.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/ReadOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/ReadOnlyAttribute.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/ReadOnlyAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/ReadOnlyAttribute.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/RenameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/RenameAttribute.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/Attributes/RenameAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/Attributes/RenameAttribute.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/IMGUI.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/AttributeDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/IMGUI/AttributeDrawer.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/AttributeDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/IMGUI/AttributeDrawer.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/BaseEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/IMGUI/BaseEditor.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/BaseEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/IMGUI/BaseEditor.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/HidebyEditor.cs: -------------------------------------------------------------------------------- 1 | namespace GalForUnity.Core.Editor.IMGUI{ 2 | 3 | } -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/HidebyEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c4a7512e3564c88a5a34119e291d883 3 | timeCreated: 1636790330 -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/InstanceIDStorageEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/IMGUI/InstanceIDStorageEditor.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/InstanceIDStorageEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/IMGUI/InstanceIDStorageEditor.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/RenameEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/IMGUI/RenameEditor.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/RenameEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d4d1399504e46e1a6ee27cc043801ec 3 | timeCreated: 1636732786 -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/RenameEditorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/IMGUI/RenameEditorData.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/RenameEditorData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/IMGUI/RenameEditorData.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/SavableConfigEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/IMGUI/SavableConfigEditor.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/SavableConfigEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/IMGUI/SavableConfigEditor.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/SerializedPropExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/IMGUI/SerializedPropExtension.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/IMGUI/SerializedPropExtension.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/IMGUI/SerializedPropExtension.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/CreatePoseWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/CreatePoseWizard.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/CreatePoseWizard.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/CreatePoseWizard.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/CreatePoseWizard.uss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/CreatePoseWizard.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/CreatePoseWizard.uss.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/CreatePoseWizard.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/CreatePoseWizard.uxml -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/CreatePoseWizard.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/CreatePoseWizard.uxml.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/DragObjectField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/DragObjectField.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/DragObjectField.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/DragObjectField.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/DragObjectField.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/DragObjectField.uss -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/DragObjectField.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/DragObjectField.uss.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/GalContextualMenuManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/GalContextualMenuManager.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/GalContextualMenuManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0c2f549069041c599d168d31641a9ad 3 | timeCreated: 1674911753 -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/GalPrefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/GalPrefs.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/GalPrefs.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/GalPrefs.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/GalSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/GalSetting.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/GalSetting.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/GalSetting.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseBindingAnchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/PoseBindingAnchor.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseBindingAnchor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 655aa1ecfc874a69b4c43dc9dc0db5f0 3 | timeCreated: 1674289738 -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseBindingItem.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/PoseBindingItem.uxml -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseBindingItem.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/PoseBindingItem.uxml.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/PoseBindingList.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseBindingList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/PoseBindingList.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseBindingPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/PoseBindingPoint.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseBindingPoint.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/PoseBindingPoint.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseBindingPoint.uss: -------------------------------------------------------------------------------- 1 | #unity-checkmark { 2 | } 3 | -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseBindingPoint.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/PoseBindingPoint.uss.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseBindingPoint.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/PoseBindingPoint.uxml -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseBindingPoint.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/PoseBindingPoint.uxml.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/PoseList.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/PoseList.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/PoseView.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/PoseView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a13b4ecefa842c3a2a13c712421bda8 3 | timeCreated: 1674312888 -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/RoleWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/RoleWizard.cs -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/RoleWizard.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/RoleWizard.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/RoleWizard.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/RoleWizard.uss -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/RoleWizard.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/RoleWizard.uss.meta -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/RoleWizard.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/RoleWizard.uxml -------------------------------------------------------------------------------- /Core/Scripts/Editor/UIElements/RoleWizard.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Editor/UIElements/RoleWizard.uxml.meta -------------------------------------------------------------------------------- /Core/Scripts/GalCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/GalCore.cs -------------------------------------------------------------------------------- /Core/Scripts/GalCore.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/GalCore.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/GalCoreUGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/GalCoreUGUI.cs -------------------------------------------------------------------------------- /Core/Scripts/GalCoreUGUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/GalCoreUGUI.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/GalInstanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/GalInstanceManager.cs -------------------------------------------------------------------------------- /Core/Scripts/GalInstanceManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/GalInstanceManager.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/GalSynchronizationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/GalSynchronizationContext.cs -------------------------------------------------------------------------------- /Core/Scripts/GalSynchronizationContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/GalSynchronizationContext.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/Gender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Gender.cs -------------------------------------------------------------------------------- /Core/Scripts/Gender.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/Gender.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/ICoreIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/ICoreIO.cs -------------------------------------------------------------------------------- /Core/Scripts/ICoreIO.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/ICoreIO.cs.meta -------------------------------------------------------------------------------- /Core/Scripts/RoleAssets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/RoleAssets.cs -------------------------------------------------------------------------------- /Core/Scripts/RoleAssets.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2abc01e954354f769adc2e0e89bd28af 3 | timeCreated: 1674806858 -------------------------------------------------------------------------------- /Core/Scripts/RoleDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/RoleDB.cs -------------------------------------------------------------------------------- /Core/Scripts/RoleDB.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7709704fbab0447fa65979d9d79fefc2 3 | timeCreated: 1674914649 -------------------------------------------------------------------------------- /Core/Scripts/RoleUGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/RoleUGUI.cs -------------------------------------------------------------------------------- /Core/Scripts/RoleUGUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Core/Scripts/RoleUGUI.cs.meta -------------------------------------------------------------------------------- /Framework.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework.meta -------------------------------------------------------------------------------- /Framework/Controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/Controller.meta -------------------------------------------------------------------------------- /Framework/Controller/OptionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/Controller/OptionController.cs -------------------------------------------------------------------------------- /Framework/Controller/OptionController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/Controller/OptionController.cs.meta -------------------------------------------------------------------------------- /Framework/GameSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/GameSystem.cs -------------------------------------------------------------------------------- /Framework/GameSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/GameSystem.cs.meta -------------------------------------------------------------------------------- /Framework/GameTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/GameTime.cs -------------------------------------------------------------------------------- /Framework/GameTime.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/GameTime.cs.meta -------------------------------------------------------------------------------- /Framework/GfuApplicationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/GfuApplicationInfo.cs -------------------------------------------------------------------------------- /Framework/GfuApplicationInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/GfuApplicationInfo.cs.meta -------------------------------------------------------------------------------- /Framework/GfuInstanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/GfuInstanceManager.cs -------------------------------------------------------------------------------- /Framework/GfuInstanceManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/GfuInstanceManager.cs.meta -------------------------------------------------------------------------------- /Framework/GfuLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/GfuLanguage.cs -------------------------------------------------------------------------------- /Framework/GfuLanguage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/GfuLanguage.cs.meta -------------------------------------------------------------------------------- /Framework/GfuObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/GfuObjectPool.cs -------------------------------------------------------------------------------- /Framework/GfuObjectPool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/GfuObjectPool.cs.meta -------------------------------------------------------------------------------- /Framework/GraphSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/GraphSystem.cs -------------------------------------------------------------------------------- /Framework/GraphSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/GraphSystem.cs.meta -------------------------------------------------------------------------------- /Framework/View.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/View.meta -------------------------------------------------------------------------------- /Framework/View/BackgroundAutoSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/View/BackgroundAutoSize.cs -------------------------------------------------------------------------------- /Framework/View/BackgroundAutoSize.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/View/BackgroundAutoSize.cs.meta -------------------------------------------------------------------------------- /Framework/View/ShowPlotView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/View/ShowPlotView.cs -------------------------------------------------------------------------------- /Framework/View/ShowPlotView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/View/ShowPlotView.cs.meta -------------------------------------------------------------------------------- /Framework/View/SpeakTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/View/SpeakTransition.cs -------------------------------------------------------------------------------- /Framework/View/SpeakTransition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dc34f0934a04cccbcf92fac13d9ccca 3 | timeCreated: 1612444685 -------------------------------------------------------------------------------- /Framework/View/UIEventTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/View/UIEventTrigger.cs -------------------------------------------------------------------------------- /Framework/View/UIEventTrigger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Framework/View/UIEventTrigger.cs.meta -------------------------------------------------------------------------------- /Graph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph.meta -------------------------------------------------------------------------------- /Graph/AssetGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/AssetGraph.cs -------------------------------------------------------------------------------- /Graph/AssetGraph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/AssetGraph.cs.meta -------------------------------------------------------------------------------- /Graph/Attributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Attributes.meta -------------------------------------------------------------------------------- /Graph/Attributes/DefaultValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Attributes/DefaultValueAttribute.cs -------------------------------------------------------------------------------- /Graph/Attributes/DefaultValueAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Attributes/DefaultValueAttribute.cs.meta -------------------------------------------------------------------------------- /Graph/Attributes/NodeFieldTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Attributes/NodeFieldTypeAttribute.cs -------------------------------------------------------------------------------- /Graph/Attributes/NodeFieldTypeAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Attributes/NodeFieldTypeAttribute.cs.meta -------------------------------------------------------------------------------- /Graph/Attributes/NodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Attributes/NodeType.cs -------------------------------------------------------------------------------- /Graph/Attributes/NodeType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Attributes/NodeType.cs.meta -------------------------------------------------------------------------------- /Graph/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor.meta -------------------------------------------------------------------------------- /Graph/Editor/Block.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block.meta -------------------------------------------------------------------------------- /Graph/Editor/Block/.idea/.idea.Block.dir/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/.idea/.idea.Block.dir/.idea/.gitignore -------------------------------------------------------------------------------- /Graph/Editor/Block/.idea/.idea.Block.dir/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/.idea/.idea.Block.dir/.idea/encodings.xml -------------------------------------------------------------------------------- /Graph/Editor/Block/.idea/.idea.Block.dir/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/.idea/.idea.Block.dir/.idea/indexLayout.xml -------------------------------------------------------------------------------- /Graph/Editor/Block/.idea/.idea.Block.dir/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/.idea/.idea.Block.dir/.idea/vcs.xml -------------------------------------------------------------------------------- /Graph/Editor/Block/AudioBlockEditorUxml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/AudioBlockEditorUxml.cs -------------------------------------------------------------------------------- /Graph/Editor/Block/AudioBlockEditorUxml.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/AudioBlockEditorUxml.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Block/BlockClickSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/BlockClickSelector.cs -------------------------------------------------------------------------------- /Graph/Editor/Block/BlockClickSelector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 847204a4d0e34619b8a56a32d02ec151 3 | timeCreated: 1675775139 -------------------------------------------------------------------------------- /Graph/Editor/Block/BlockContentUxml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/BlockContentUxml.cs -------------------------------------------------------------------------------- /Graph/Editor/Block/BlockContentUxml.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/BlockContentUxml.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Block/BlockPortUxml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/BlockPortUxml.cs -------------------------------------------------------------------------------- /Graph/Editor/Block/BlockPortUxml.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/BlockPortUxml.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Block/DraggableBlockEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/DraggableBlockEditor.cs -------------------------------------------------------------------------------- /Graph/Editor/Block/DraggableBlockEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/DraggableBlockEditor.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Block/GfuConfigFieldUXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/GfuConfigFieldUXml.cs -------------------------------------------------------------------------------- /Graph/Editor/Block/GfuConfigFieldUXml.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/GfuConfigFieldUXml.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Block/GfuTogglePort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/GfuTogglePort.cs -------------------------------------------------------------------------------- /Graph/Editor/Block/GfuTogglePort.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/GfuTogglePort.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Block/IGalBlockEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/IGalBlockEditor.cs -------------------------------------------------------------------------------- /Graph/Editor/Block/IGalBlockEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/IGalBlockEditor.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Block/NameDropdownField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/NameDropdownField.cs -------------------------------------------------------------------------------- /Graph/Editor/Block/NameDropdownField.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/NameDropdownField.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Block/PlotBlockEditorUxml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/PlotBlockEditorUxml.cs -------------------------------------------------------------------------------- /Graph/Editor/Block/PlotBlockEditorUxml.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/PlotBlockEditorUxml.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Block/PortableBlockEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/PortableBlockEditor.cs -------------------------------------------------------------------------------- /Graph/Editor/Block/PortableBlockEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/PortableBlockEditor.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Block/ResourceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/ResourceHandler.cs -------------------------------------------------------------------------------- /Graph/Editor/Block/ResourceHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/ResourceHandler.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Block/UxmlHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/UxmlHandler.cs -------------------------------------------------------------------------------- /Graph/Editor/Block/UxmlHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/UxmlHandler.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Block/VideoBlockEditorUxml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/VideoBlockEditorUxml.cs -------------------------------------------------------------------------------- /Graph/Editor/Block/VideoBlockEditorUxml.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Block/VideoBlockEditorUxml.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Builder.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder.meta -------------------------------------------------------------------------------- /Graph/Editor/Builder/GalGraphView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/GalGraphView.cs -------------------------------------------------------------------------------- /Graph/Editor/Builder/GalGraphView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/GalGraphView.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Builder/GalGraphWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/GalGraphWindow.cs -------------------------------------------------------------------------------- /Graph/Editor/Builder/GalGraphWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/GalGraphWindow.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Builder/GalPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/GalPort.cs -------------------------------------------------------------------------------- /Graph/Editor/Builder/GalPort.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/GalPort.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Builder/INodeRuntimeProviderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/INodeRuntimeProviderBase.cs -------------------------------------------------------------------------------- /Graph/Editor/Builder/INodeRuntimeProviderBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/INodeRuntimeProviderBase.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Builder/PortList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/PortList.cs -------------------------------------------------------------------------------- /Graph/Editor/Builder/PortList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/PortList.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Builder/SearchProviders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/SearchProviders.meta -------------------------------------------------------------------------------- /Graph/Editor/Builder/SearchProviders/BlockFieldSearchProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/SearchProviders/BlockFieldSearchProvider.cs -------------------------------------------------------------------------------- /Graph/Editor/Builder/SearchProviders/BlockFieldSearchProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/SearchProviders/BlockFieldSearchProvider.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Builder/SearchProviders/PoseAdditionSearchTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/SearchProviders/PoseAdditionSearchTypeProvider.cs -------------------------------------------------------------------------------- /Graph/Editor/Builder/SearchProviders/PoseAdditionSearchTypeProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 028106f32d2747579b2f1d4b95ac5286 3 | timeCreated: 1674925503 -------------------------------------------------------------------------------- /Graph/Editor/Builder/SearchProviders/SearchMenuWindowProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/SearchProviders/SearchMenuWindowProvider.cs -------------------------------------------------------------------------------- /Graph/Editor/Builder/SearchProviders/SearchMenuWindowProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Builder/SearchProviders/SearchMenuWindowProvider.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/ConfigAdditions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3da134811a5b4991a43bd39d7f41dd70 3 | timeCreated: 1674922579 -------------------------------------------------------------------------------- /Graph/Editor/ConfigAdditions/AdditionPoseUxml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/ConfigAdditions/AdditionPoseUxml.cs -------------------------------------------------------------------------------- /Graph/Editor/ConfigAdditions/AdditionPoseUxml.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e848676efb1d444a93a7a192c38bbfba 3 | timeCreated: 1674923050 -------------------------------------------------------------------------------- /Graph/Editor/ConfigAdditions/AdditionPositionUxml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/ConfigAdditions/AdditionPositionUxml.cs -------------------------------------------------------------------------------- /Graph/Editor/ConfigAdditions/AdditionPositionUxml.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a1196f3f41c44318722d60ee28bc8d8 3 | timeCreated: 1674973349 -------------------------------------------------------------------------------- /Graph/Editor/ConfigAdditions/AdditionRoleVoiceUxml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/ConfigAdditions/AdditionRoleVoiceUxml.cs -------------------------------------------------------------------------------- /Graph/Editor/ConfigAdditions/AdditionRoleVoiceUxml.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a56eddd1d0704b38b238f3ee86fc8479 3 | timeCreated: 1674971877 -------------------------------------------------------------------------------- /Graph/Editor/ConfigAdditions/ConfigAdditionUxml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/ConfigAdditions/ConfigAdditionUxml.cs -------------------------------------------------------------------------------- /Graph/Editor/ConfigAdditions/ConfigAdditionUxml.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 311b99846c004e718174663e443c0dc3 3 | timeCreated: 1674977166 -------------------------------------------------------------------------------- /Graph/Editor/ConfigAdditions/FieldContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/ConfigAdditions/FieldContainer.cs -------------------------------------------------------------------------------- /Graph/Editor/ConfigAdditions/FieldContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8d8302a4c85445691ba81ee5b34cc41 3 | timeCreated: 1674980239 -------------------------------------------------------------------------------- /Graph/Editor/FBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/FBinder.cs -------------------------------------------------------------------------------- /Graph/Editor/FBinder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/FBinder.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Nodes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Nodes.meta -------------------------------------------------------------------------------- /Graph/Editor/Nodes/CustomNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Nodes/CustomNode.cs -------------------------------------------------------------------------------- /Graph/Editor/Nodes/CustomNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Nodes/CustomNode.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Nodes/EditorNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Nodes/EditorNode.cs -------------------------------------------------------------------------------- /Graph/Editor/Nodes/EditorNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Nodes/EditorNode.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Nodes/GfuNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Nodes/GfuNode.cs -------------------------------------------------------------------------------- /Graph/Editor/Nodes/GfuNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Nodes/GfuNode.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Nodes/IInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Nodes/IInitialize.cs -------------------------------------------------------------------------------- /Graph/Editor/Nodes/IInitialize.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Nodes/IInitialize.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Nodes/MainNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Nodes/MainNode.cs -------------------------------------------------------------------------------- /Graph/Editor/Nodes/MainNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Nodes/MainNode.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Nodes/PlotBlockSearchProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Nodes/PlotBlockSearchProvider.cs -------------------------------------------------------------------------------- /Graph/Editor/Nodes/PlotBlockSearchProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb3711ea48d34bb19309b5f1a0146268 3 | timeCreated: 1676041143 -------------------------------------------------------------------------------- /Graph/Editor/Nodes/PlotNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Nodes/PlotNode.cs -------------------------------------------------------------------------------- /Graph/Editor/Nodes/PlotNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Nodes/PlotNode.cs.meta -------------------------------------------------------------------------------- /Graph/Editor/Uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uss.meta -------------------------------------------------------------------------------- /Graph/Editor/Uss/GalGraphWindow.uss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Graph/Editor/Uss/GalGraphWindow.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uss/GalGraphWindow.uss.meta -------------------------------------------------------------------------------- /Graph/Editor/Uss/GfuConfigFieldUss.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uss/GfuConfigFieldUss.uss -------------------------------------------------------------------------------- /Graph/Editor/Uss/GfuConfigFieldUss.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uss/GfuConfigFieldUss.uss.meta -------------------------------------------------------------------------------- /Graph/Editor/Uss/GfuTogglePortUss.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uss/GfuTogglePortUss.uss -------------------------------------------------------------------------------- /Graph/Editor/Uss/GfuTogglePortUss.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uss/GfuTogglePortUss.uss.meta -------------------------------------------------------------------------------- /Graph/Editor/Uss/PlotBlock.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uss/PlotBlock.uss -------------------------------------------------------------------------------- /Graph/Editor/Uss/PlotBlock.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uss/PlotBlock.uss.meta -------------------------------------------------------------------------------- /Graph/Editor/Uss/PlotNodeUss.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uss/PlotNodeUss.uss -------------------------------------------------------------------------------- /Graph/Editor/Uss/PlotNodeUss.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uss/PlotNodeUss.uss.meta -------------------------------------------------------------------------------- /Graph/Editor/Uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uxml.meta -------------------------------------------------------------------------------- /Graph/Editor/Uxml/ConfigAddition.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uxml/ConfigAddition.uxml -------------------------------------------------------------------------------- /Graph/Editor/Uxml/ConfigAddition.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uxml/ConfigAddition.uxml.meta -------------------------------------------------------------------------------- /Graph/Editor/Uxml/DraggableBlock.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uxml/DraggableBlock.uxml -------------------------------------------------------------------------------- /Graph/Editor/Uxml/DraggableBlock.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uxml/DraggableBlock.uxml.meta -------------------------------------------------------------------------------- /Graph/Editor/Uxml/GalGraphWindow.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uxml/GalGraphWindow.uxml -------------------------------------------------------------------------------- /Graph/Editor/Uxml/GalGraphWindow.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uxml/GalGraphWindow.uxml.meta -------------------------------------------------------------------------------- /Graph/Editor/Uxml/PlotBlock.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uxml/PlotBlock.uxml -------------------------------------------------------------------------------- /Graph/Editor/Uxml/PlotBlock.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Editor/Uxml/PlotBlock.uxml.meta -------------------------------------------------------------------------------- /Graph/GalGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/GalGraph.cs -------------------------------------------------------------------------------- /Graph/GalGraph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/GalGraph.cs.meta -------------------------------------------------------------------------------- /Graph/GalGraphAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/GalGraphAsset.cs -------------------------------------------------------------------------------- /Graph/GalGraphAsset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 254ca62d6dfd47a79afb610943ec6ebe 3 | timeCreated: 1676040251 -------------------------------------------------------------------------------- /Graph/GalNodeAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/GalNodeAsset.cs -------------------------------------------------------------------------------- /Graph/GalNodeAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/GalNodeAsset.cs.meta -------------------------------------------------------------------------------- /Graph/GalPortAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/GalPortAsset.cs -------------------------------------------------------------------------------- /Graph/GalPortAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/GalPortAsset.cs.meta -------------------------------------------------------------------------------- /Graph/Nodes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes.meta -------------------------------------------------------------------------------- /Graph/Nodes/IRuntimeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes/IRuntimeNode.cs -------------------------------------------------------------------------------- /Graph/Nodes/IRuntimeNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes/IRuntimeNode.cs.meta -------------------------------------------------------------------------------- /Graph/Nodes/MainNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes/MainNode.cs -------------------------------------------------------------------------------- /Graph/Nodes/MainNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes/MainNode.cs.meta -------------------------------------------------------------------------------- /Graph/Nodes/PlayGraphNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes/PlayGraphNode.cs -------------------------------------------------------------------------------- /Graph/Nodes/PlayGraphNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes/PlayGraphNode.cs.meta -------------------------------------------------------------------------------- /Graph/Nodes/PlotNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes/PlotNode.cs -------------------------------------------------------------------------------- /Graph/Nodes/PlotNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes/PlotNode.cs.meta -------------------------------------------------------------------------------- /Graph/Nodes/PortDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes/PortDefinition.cs -------------------------------------------------------------------------------- /Graph/Nodes/PortDefinition.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes/PortDefinition.cs.meta -------------------------------------------------------------------------------- /Graph/Nodes/ProbabilityNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes/ProbabilityNode.cs -------------------------------------------------------------------------------- /Graph/Nodes/ProbabilityNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes/ProbabilityNode.cs.meta -------------------------------------------------------------------------------- /Graph/Nodes/RuntimeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes/RuntimeNode.cs -------------------------------------------------------------------------------- /Graph/Nodes/RuntimeNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/Nodes/RuntimeNode.cs.meta -------------------------------------------------------------------------------- /Graph/PortValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/PortValue.cs -------------------------------------------------------------------------------- /Graph/PortValue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/PortValue.cs.meta -------------------------------------------------------------------------------- /Graph/SceneGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/SceneGraph.cs -------------------------------------------------------------------------------- /Graph/SceneGraph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/Graph/SceneGraph.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/README.md.meta -------------------------------------------------------------------------------- /ResourceHandler.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/ResourceHandler.asset -------------------------------------------------------------------------------- /ResourceHandler.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/ResourceHandler.asset.meta -------------------------------------------------------------------------------- /UxmlHandler.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/UxmlHandler.asset -------------------------------------------------------------------------------- /UxmlHandler.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/UxmlHandler.asset.meta -------------------------------------------------------------------------------- /com.muxigame.galforunity.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/com.muxigame.galforunity.asmdef -------------------------------------------------------------------------------- /com.muxigame.galforunity.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxigame/GalForUnity/HEAD/com.muxigame.galforunity.asmdef.meta --------------------------------------------------------------------------------