├── .gitignore ├── LICENSE ├── Logo └── PengFWLogoSmall.png ├── Prefab ├── AirWall.prefab ├── BossHPBar.prefab ├── EnemyHPBar.prefab ├── EventSystem.prefab ├── MainCanvas.prefab ├── MainFreeLook.prefab ├── MainVolume Profile.asset ├── MainVolume.prefab └── MainVolumePostProcessProfile.asset ├── README.md └── Scripts ├── AI ├── PengAIScript.cs └── PengActorControlLoadAIScript.cs ├── Actors ├── IPengActorState.cs ├── PengActor.cs ├── PengActorControl.cs ├── PengActorControlInputProcessor.cs ├── PengActorControlInputType.cs ├── PengActorState.cs ├── PengTrack.cs ├── PengVariables.cs └── RuntimeScripts │ ├── PengScript.cs │ ├── PengScriptAesthetics.cs │ ├── PengScriptBranch.cs │ ├── PengScriptCalculation.cs │ ├── PengScriptEvent.cs │ ├── PengScriptFunction.cs │ ├── PengScriptLoop.cs │ └── PengScriptValue.cs ├── Editor ├── AIEditor │ ├── PengAIEditor.cs │ ├── PengAIEditorAddNode.cs │ ├── PengAIEditorNode.cs │ ├── PengAIEditorNodeConnection.cs │ └── PengAIGenerator.cs ├── EditorNodes │ ├── PengNode.cs │ ├── PengNodeAesthetics.cs │ ├── PengNodeBranch.cs │ ├── PengNodeCalculation.cs │ ├── PengNodeEvent.cs │ ├── PengNodeFunction.cs │ ├── PengNodeLoop.cs │ └── PengNodeValue.cs ├── LevelEditor │ ├── EditorNode │ │ ├── PengLevelEditorNode.cs │ │ ├── PengLevelEditorNodeFunction.cs │ │ ├── PengLevelEditorNodeTrigger.cs │ │ └── PengLevelEditorNodeUI.cs │ ├── PengLevelEditor.cs │ ├── PengLevelEditorAddNode.cs │ ├── PengLevelGenerator.cs │ ├── PengLevelNodeConnection.cs │ └── PengLevelNodeVariables.cs ├── PengActorAttributesEditor.cs ├── PengActorGeneratorEditor.cs ├── PengActorStateEditorWindow.cs ├── PengAddNode.cs ├── PengBuffEditor.cs ├── PengEditorGUIStyleViewer.cs ├── PengEditorMain.cs ├── PengEditorTrack.cs ├── PengEditorVariables.cs ├── PengNodeConnection.cs ├── PengOtherInfoEditor.cs └── PengRuntimeMonitor.cs ├── Input ├── PengActorInput.cs └── PengActorInput.inputactions ├── Level ├── PengLevel.cs ├── PengLevelLoadAllScripts.cs ├── PengLevelRuntimeLevelScriptVariables.cs ├── PengLevelRuntimeManager.cs └── RuntimeScript │ ├── PengLevelRuntimeFunction.cs │ ├── PengLevelRuntimeTrigger.cs │ └── PengLevelRuntimeUI.cs ├── Managers ├── PengBlackBoard.cs ├── PengBuffManager.cs ├── PengCameraManager.cs ├── PengEffectManager.cs ├── PengEventManager.cs ├── PengGameManager.cs └── PengGameManagerParseFunction.cs └── UI └── PengHPBarUI.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/LICENSE -------------------------------------------------------------------------------- /Logo/PengFWLogoSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Logo/PengFWLogoSmall.png -------------------------------------------------------------------------------- /Prefab/AirWall.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Prefab/AirWall.prefab -------------------------------------------------------------------------------- /Prefab/BossHPBar.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Prefab/BossHPBar.prefab -------------------------------------------------------------------------------- /Prefab/EnemyHPBar.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Prefab/EnemyHPBar.prefab -------------------------------------------------------------------------------- /Prefab/EventSystem.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Prefab/EventSystem.prefab -------------------------------------------------------------------------------- /Prefab/MainCanvas.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Prefab/MainCanvas.prefab -------------------------------------------------------------------------------- /Prefab/MainFreeLook.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Prefab/MainFreeLook.prefab -------------------------------------------------------------------------------- /Prefab/MainVolume Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Prefab/MainVolume Profile.asset -------------------------------------------------------------------------------- /Prefab/MainVolume.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Prefab/MainVolume.prefab -------------------------------------------------------------------------------- /Prefab/MainVolumePostProcessProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Prefab/MainVolumePostProcessProfile.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/AI/PengAIScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/AI/PengAIScript.cs -------------------------------------------------------------------------------- /Scripts/AI/PengActorControlLoadAIScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/AI/PengActorControlLoadAIScript.cs -------------------------------------------------------------------------------- /Scripts/Actors/IPengActorState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/IPengActorState.cs -------------------------------------------------------------------------------- /Scripts/Actors/PengActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/PengActor.cs -------------------------------------------------------------------------------- /Scripts/Actors/PengActorControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/PengActorControl.cs -------------------------------------------------------------------------------- /Scripts/Actors/PengActorControlInputProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/PengActorControlInputProcessor.cs -------------------------------------------------------------------------------- /Scripts/Actors/PengActorControlInputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/PengActorControlInputType.cs -------------------------------------------------------------------------------- /Scripts/Actors/PengActorState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/PengActorState.cs -------------------------------------------------------------------------------- /Scripts/Actors/PengTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/PengTrack.cs -------------------------------------------------------------------------------- /Scripts/Actors/PengVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/PengVariables.cs -------------------------------------------------------------------------------- /Scripts/Actors/RuntimeScripts/PengScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/RuntimeScripts/PengScript.cs -------------------------------------------------------------------------------- /Scripts/Actors/RuntimeScripts/PengScriptAesthetics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/RuntimeScripts/PengScriptAesthetics.cs -------------------------------------------------------------------------------- /Scripts/Actors/RuntimeScripts/PengScriptBranch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/RuntimeScripts/PengScriptBranch.cs -------------------------------------------------------------------------------- /Scripts/Actors/RuntimeScripts/PengScriptCalculation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/RuntimeScripts/PengScriptCalculation.cs -------------------------------------------------------------------------------- /Scripts/Actors/RuntimeScripts/PengScriptEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/RuntimeScripts/PengScriptEvent.cs -------------------------------------------------------------------------------- /Scripts/Actors/RuntimeScripts/PengScriptFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/RuntimeScripts/PengScriptFunction.cs -------------------------------------------------------------------------------- /Scripts/Actors/RuntimeScripts/PengScriptLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/RuntimeScripts/PengScriptLoop.cs -------------------------------------------------------------------------------- /Scripts/Actors/RuntimeScripts/PengScriptValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Actors/RuntimeScripts/PengScriptValue.cs -------------------------------------------------------------------------------- /Scripts/Editor/AIEditor/PengAIEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/AIEditor/PengAIEditor.cs -------------------------------------------------------------------------------- /Scripts/Editor/AIEditor/PengAIEditorAddNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/AIEditor/PengAIEditorAddNode.cs -------------------------------------------------------------------------------- /Scripts/Editor/AIEditor/PengAIEditorNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/AIEditor/PengAIEditorNode.cs -------------------------------------------------------------------------------- /Scripts/Editor/AIEditor/PengAIEditorNodeConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/AIEditor/PengAIEditorNodeConnection.cs -------------------------------------------------------------------------------- /Scripts/Editor/AIEditor/PengAIGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/AIEditor/PengAIGenerator.cs -------------------------------------------------------------------------------- /Scripts/Editor/EditorNodes/PengNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/EditorNodes/PengNode.cs -------------------------------------------------------------------------------- /Scripts/Editor/EditorNodes/PengNodeAesthetics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/EditorNodes/PengNodeAesthetics.cs -------------------------------------------------------------------------------- /Scripts/Editor/EditorNodes/PengNodeBranch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/EditorNodes/PengNodeBranch.cs -------------------------------------------------------------------------------- /Scripts/Editor/EditorNodes/PengNodeCalculation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/EditorNodes/PengNodeCalculation.cs -------------------------------------------------------------------------------- /Scripts/Editor/EditorNodes/PengNodeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/EditorNodes/PengNodeEvent.cs -------------------------------------------------------------------------------- /Scripts/Editor/EditorNodes/PengNodeFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/EditorNodes/PengNodeFunction.cs -------------------------------------------------------------------------------- /Scripts/Editor/EditorNodes/PengNodeLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/EditorNodes/PengNodeLoop.cs -------------------------------------------------------------------------------- /Scripts/Editor/EditorNodes/PengNodeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/EditorNodes/PengNodeValue.cs -------------------------------------------------------------------------------- /Scripts/Editor/LevelEditor/EditorNode/PengLevelEditorNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/LevelEditor/EditorNode/PengLevelEditorNode.cs -------------------------------------------------------------------------------- /Scripts/Editor/LevelEditor/EditorNode/PengLevelEditorNodeFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/LevelEditor/EditorNode/PengLevelEditorNodeFunction.cs -------------------------------------------------------------------------------- /Scripts/Editor/LevelEditor/EditorNode/PengLevelEditorNodeTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/LevelEditor/EditorNode/PengLevelEditorNodeTrigger.cs -------------------------------------------------------------------------------- /Scripts/Editor/LevelEditor/EditorNode/PengLevelEditorNodeUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/LevelEditor/EditorNode/PengLevelEditorNodeUI.cs -------------------------------------------------------------------------------- /Scripts/Editor/LevelEditor/PengLevelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/LevelEditor/PengLevelEditor.cs -------------------------------------------------------------------------------- /Scripts/Editor/LevelEditor/PengLevelEditorAddNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/LevelEditor/PengLevelEditorAddNode.cs -------------------------------------------------------------------------------- /Scripts/Editor/LevelEditor/PengLevelGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/LevelEditor/PengLevelGenerator.cs -------------------------------------------------------------------------------- /Scripts/Editor/LevelEditor/PengLevelNodeConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/LevelEditor/PengLevelNodeConnection.cs -------------------------------------------------------------------------------- /Scripts/Editor/LevelEditor/PengLevelNodeVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/LevelEditor/PengLevelNodeVariables.cs -------------------------------------------------------------------------------- /Scripts/Editor/PengActorAttributesEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/PengActorAttributesEditor.cs -------------------------------------------------------------------------------- /Scripts/Editor/PengActorGeneratorEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/PengActorGeneratorEditor.cs -------------------------------------------------------------------------------- /Scripts/Editor/PengActorStateEditorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/PengActorStateEditorWindow.cs -------------------------------------------------------------------------------- /Scripts/Editor/PengAddNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/PengAddNode.cs -------------------------------------------------------------------------------- /Scripts/Editor/PengBuffEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/PengBuffEditor.cs -------------------------------------------------------------------------------- /Scripts/Editor/PengEditorGUIStyleViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/PengEditorGUIStyleViewer.cs -------------------------------------------------------------------------------- /Scripts/Editor/PengEditorMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/PengEditorMain.cs -------------------------------------------------------------------------------- /Scripts/Editor/PengEditorTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/PengEditorTrack.cs -------------------------------------------------------------------------------- /Scripts/Editor/PengEditorVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/PengEditorVariables.cs -------------------------------------------------------------------------------- /Scripts/Editor/PengNodeConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/PengNodeConnection.cs -------------------------------------------------------------------------------- /Scripts/Editor/PengOtherInfoEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/PengOtherInfoEditor.cs -------------------------------------------------------------------------------- /Scripts/Editor/PengRuntimeMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Editor/PengRuntimeMonitor.cs -------------------------------------------------------------------------------- /Scripts/Input/PengActorInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Input/PengActorInput.cs -------------------------------------------------------------------------------- /Scripts/Input/PengActorInput.inputactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Input/PengActorInput.inputactions -------------------------------------------------------------------------------- /Scripts/Level/PengLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Level/PengLevel.cs -------------------------------------------------------------------------------- /Scripts/Level/PengLevelLoadAllScripts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Level/PengLevelLoadAllScripts.cs -------------------------------------------------------------------------------- /Scripts/Level/PengLevelRuntimeLevelScriptVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Level/PengLevelRuntimeLevelScriptVariables.cs -------------------------------------------------------------------------------- /Scripts/Level/PengLevelRuntimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Level/PengLevelRuntimeManager.cs -------------------------------------------------------------------------------- /Scripts/Level/RuntimeScript/PengLevelRuntimeFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Level/RuntimeScript/PengLevelRuntimeFunction.cs -------------------------------------------------------------------------------- /Scripts/Level/RuntimeScript/PengLevelRuntimeTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Level/RuntimeScript/PengLevelRuntimeTrigger.cs -------------------------------------------------------------------------------- /Scripts/Level/RuntimeScript/PengLevelRuntimeUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Level/RuntimeScript/PengLevelRuntimeUI.cs -------------------------------------------------------------------------------- /Scripts/Managers/PengBlackBoard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Managers/PengBlackBoard.cs -------------------------------------------------------------------------------- /Scripts/Managers/PengBuffManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Managers/PengBuffManager.cs -------------------------------------------------------------------------------- /Scripts/Managers/PengCameraManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Managers/PengCameraManager.cs -------------------------------------------------------------------------------- /Scripts/Managers/PengEffectManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Managers/PengEffectManager.cs -------------------------------------------------------------------------------- /Scripts/Managers/PengEventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Managers/PengEventManager.cs -------------------------------------------------------------------------------- /Scripts/Managers/PengGameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Managers/PengGameManager.cs -------------------------------------------------------------------------------- /Scripts/Managers/PengGameManagerParseFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/Managers/PengGameManagerParseFunction.cs -------------------------------------------------------------------------------- /Scripts/UI/PengHPBarUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicyPeng0425/PengFramework/HEAD/Scripts/UI/PengHPBarUI.cs --------------------------------------------------------------------------------