├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── actions │ └── setup-release │ │ └── action.yml └── workflows │ ├── build.yml │ └── test.yml ├── .gitignore ├── .vscode ├── launch.json ├── mcp.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CLAUDE.md ├── LICENSE ├── README.md ├── addons ├── debug_menu │ ├── LICENSE.md │ ├── debug_menu.gd │ ├── debug_menu.gd.uid │ ├── debug_menu.tscn │ ├── plugin.cfg │ ├── plugin.gd │ └── plugin.gd.uid ├── gdUnit4 │ ├── GdUnitRunner.cfg │ ├── LICENSE │ ├── bin │ │ ├── GdUnitCmdTool.gd │ │ ├── GdUnitCmdTool.gd.uid │ │ ├── GdUnitCopyLog.gd │ │ └── GdUnitCopyLog.gd.uid │ ├── plugin.cfg │ ├── plugin.gd │ ├── plugin.gd.uid │ ├── runtest.cmd │ ├── runtest.sh │ └── src │ │ ├── Comparator.gd │ │ ├── Comparator.gd.uid │ │ ├── Fuzzers.gd │ │ ├── Fuzzers.gd.uid │ │ ├── GdUnitArrayAssert.gd │ │ ├── GdUnitArrayAssert.gd.uid │ │ ├── GdUnitAssert.gd │ │ ├── GdUnitAssert.gd.uid │ │ ├── GdUnitAwaiter.gd │ │ ├── GdUnitAwaiter.gd.uid │ │ ├── GdUnitBoolAssert.gd │ │ ├── GdUnitBoolAssert.gd.uid │ │ ├── GdUnitConstants.gd │ │ ├── GdUnitConstants.gd.uid │ │ ├── GdUnitDictionaryAssert.gd │ │ ├── GdUnitDictionaryAssert.gd.uid │ │ ├── GdUnitFailureAssert.gd │ │ ├── GdUnitFailureAssert.gd.uid │ │ ├── GdUnitFileAssert.gd │ │ ├── GdUnitFileAssert.gd.uid │ │ ├── GdUnitFloatAssert.gd │ │ ├── GdUnitFloatAssert.gd.uid │ │ ├── GdUnitFuncAssert.gd │ │ ├── GdUnitFuncAssert.gd.uid │ │ ├── GdUnitGodotErrorAssert.gd │ │ ├── GdUnitGodotErrorAssert.gd.uid │ │ ├── GdUnitIntAssert.gd │ │ ├── GdUnitIntAssert.gd.uid │ │ ├── GdUnitObjectAssert.gd │ │ ├── GdUnitObjectAssert.gd.uid │ │ ├── GdUnitResultAssert.gd │ │ ├── GdUnitResultAssert.gd.uid │ │ ├── GdUnitSceneRunner.gd │ │ ├── GdUnitSceneRunner.gd.uid │ │ ├── GdUnitSignalAssert.gd │ │ ├── GdUnitSignalAssert.gd.uid │ │ ├── GdUnitStringAssert.gd │ │ ├── GdUnitStringAssert.gd.uid │ │ ├── GdUnitTestSuite.gd │ │ ├── GdUnitTestSuite.gd.uid │ │ ├── GdUnitTuple.gd │ │ ├── GdUnitTuple.gd.uid │ │ ├── GdUnitValueExtractor.gd │ │ ├── GdUnitValueExtractor.gd.uid │ │ ├── GdUnitVectorAssert.gd │ │ ├── GdUnitVectorAssert.gd.uid │ │ ├── asserts │ │ ├── CallBackValueProvider.gd │ │ ├── CallBackValueProvider.gd.uid │ │ ├── DefaultValueProvider.gd │ │ ├── DefaultValueProvider.gd.uid │ │ ├── GdAssertMessages.gd │ │ ├── GdAssertMessages.gd.uid │ │ ├── GdAssertReports.gd │ │ ├── GdAssertReports.gd.uid │ │ ├── GdUnitArrayAssertImpl.gd │ │ ├── GdUnitArrayAssertImpl.gd.uid │ │ ├── GdUnitAssertImpl.gd │ │ ├── GdUnitAssertImpl.gd.uid │ │ ├── GdUnitAssertions.gd │ │ ├── GdUnitAssertions.gd.uid │ │ ├── GdUnitBoolAssertImpl.gd │ │ ├── GdUnitBoolAssertImpl.gd.uid │ │ ├── GdUnitDictionaryAssertImpl.gd │ │ ├── GdUnitDictionaryAssertImpl.gd.uid │ │ ├── GdUnitFailureAssertImpl.gd │ │ ├── GdUnitFailureAssertImpl.gd.uid │ │ ├── GdUnitFileAssertImpl.gd │ │ ├── GdUnitFileAssertImpl.gd.uid │ │ ├── GdUnitFloatAssertImpl.gd │ │ ├── GdUnitFloatAssertImpl.gd.uid │ │ ├── GdUnitFuncAssertImpl.gd │ │ ├── GdUnitFuncAssertImpl.gd.uid │ │ ├── GdUnitGodotErrorAssertImpl.gd │ │ ├── GdUnitGodotErrorAssertImpl.gd.uid │ │ ├── GdUnitIntAssertImpl.gd │ │ ├── GdUnitIntAssertImpl.gd.uid │ │ ├── GdUnitObjectAssertImpl.gd │ │ ├── GdUnitObjectAssertImpl.gd.uid │ │ ├── GdUnitResultAssertImpl.gd │ │ ├── GdUnitResultAssertImpl.gd.uid │ │ ├── GdUnitSignalAssertImpl.gd │ │ ├── GdUnitSignalAssertImpl.gd.uid │ │ ├── GdUnitStringAssertImpl.gd │ │ ├── GdUnitStringAssertImpl.gd.uid │ │ ├── GdUnitVectorAssertImpl.gd │ │ ├── GdUnitVectorAssertImpl.gd.uid │ │ ├── ValueProvider.gd │ │ └── ValueProvider.gd.uid │ │ ├── cmd │ │ ├── CmdArgumentParser.gd │ │ ├── CmdArgumentParser.gd.uid │ │ ├── CmdCommand.gd │ │ ├── CmdCommand.gd.uid │ │ ├── CmdCommandHandler.gd │ │ ├── CmdCommandHandler.gd.uid │ │ ├── CmdOption.gd │ │ ├── CmdOption.gd.uid │ │ ├── CmdOptions.gd │ │ └── CmdOptions.gd.uid │ │ ├── core │ │ ├── GdArrayTools.gd │ │ ├── GdArrayTools.gd.uid │ │ ├── GdDiffTool.gd │ │ ├── GdDiffTool.gd.uid │ │ ├── GdObjects.gd │ │ ├── GdObjects.gd.uid │ │ ├── GdUnit4Version.gd │ │ ├── GdUnit4Version.gd.uid │ │ ├── GdUnitFileAccess.gd │ │ ├── GdUnitFileAccess.gd.uid │ │ ├── GdUnitProperty.gd │ │ ├── GdUnitProperty.gd.uid │ │ ├── GdUnitResult.gd │ │ ├── GdUnitResult.gd.uid │ │ ├── GdUnitRunnerConfig.gd │ │ ├── GdUnitRunnerConfig.gd.uid │ │ ├── GdUnitSceneRunnerImpl.gd │ │ ├── GdUnitSceneRunnerImpl.gd.uid │ │ ├── GdUnitSettings.gd │ │ ├── GdUnitSettings.gd.uid │ │ ├── GdUnitSignalAwaiter.gd │ │ ├── GdUnitSignalAwaiter.gd.uid │ │ ├── GdUnitSignalCollector.gd │ │ ├── GdUnitSignalCollector.gd.uid │ │ ├── GdUnitSignals.gd │ │ ├── GdUnitSignals.gd.uid │ │ ├── GdUnitSingleton.gd │ │ ├── GdUnitSingleton.gd.uid │ │ ├── GdUnitTestResourceLoader.gd │ │ ├── GdUnitTestResourceLoader.gd.uid │ │ ├── GdUnitTestSuiteBuilder.gd │ │ ├── GdUnitTestSuiteBuilder.gd.uid │ │ ├── GdUnitTestSuiteScanner.gd │ │ ├── GdUnitTestSuiteScanner.gd.uid │ │ ├── GdUnitTools.gd │ │ ├── GdUnitTools.gd.uid │ │ ├── GodotVersionFixures.gd │ │ ├── GodotVersionFixures.gd.uid │ │ ├── LocalTime.gd │ │ ├── LocalTime.gd.uid │ │ ├── _TestCase.gd │ │ ├── _TestCase.gd.uid │ │ ├── assets │ │ │ ├── touch-button.png │ │ │ └── touch-button.png.import │ │ ├── attributes │ │ │ ├── TestCaseAttribute.gd │ │ │ └── TestCaseAttribute.gd.uid │ │ ├── command │ │ │ ├── GdUnitCommand.gd │ │ │ ├── GdUnitCommand.gd.uid │ │ │ ├── GdUnitCommandHandler.gd │ │ │ ├── GdUnitCommandHandler.gd.uid │ │ │ ├── GdUnitShortcut.gd │ │ │ ├── GdUnitShortcut.gd.uid │ │ │ ├── GdUnitShortcutAction.gd │ │ │ └── GdUnitShortcutAction.gd.uid │ │ ├── discovery │ │ │ ├── GdUnitGUID.gd │ │ │ ├── GdUnitGUID.gd.uid │ │ │ ├── GdUnitTestCase.gd │ │ │ ├── GdUnitTestCase.gd.uid │ │ │ ├── GdUnitTestDiscoverGuard.gd │ │ │ ├── GdUnitTestDiscoverGuard.gd.uid │ │ │ ├── GdUnitTestDiscoverSink.gd │ │ │ ├── GdUnitTestDiscoverSink.gd.uid │ │ │ ├── GdUnitTestDiscoverer.gd │ │ │ └── GdUnitTestDiscoverer.gd.uid │ │ ├── event │ │ │ ├── GdUnitEvent.gd │ │ │ ├── GdUnitEvent.gd.uid │ │ │ ├── GdUnitEventInit.gd │ │ │ ├── GdUnitEventInit.gd.uid │ │ │ ├── GdUnitEventStop.gd │ │ │ ├── GdUnitEventStop.gd.uid │ │ │ ├── GdUnitEventTestDiscoverEnd.gd │ │ │ ├── GdUnitEventTestDiscoverEnd.gd.uid │ │ │ ├── GdUnitEventTestDiscoverStart.gd │ │ │ ├── GdUnitEventTestDiscoverStart.gd.uid │ │ │ ├── GdUnitSessionClose.gd │ │ │ ├── GdUnitSessionClose.gd.uid │ │ │ ├── GdUnitSessionStart.gd │ │ │ └── GdUnitSessionStart.gd.uid │ │ ├── execution │ │ │ ├── GdUnitExecutionContext.gd │ │ │ ├── GdUnitExecutionContext.gd.uid │ │ │ ├── GdUnitMemoryObserver.gd │ │ │ ├── GdUnitMemoryObserver.gd.uid │ │ │ ├── GdUnitTestReportCollector.gd │ │ │ ├── GdUnitTestReportCollector.gd.uid │ │ │ ├── GdUnitTestSuiteExecutor.gd │ │ │ ├── GdUnitTestSuiteExecutor.gd.uid │ │ │ └── stages │ │ │ │ ├── GdUnitTestCaseAfterStage.gd │ │ │ │ ├── GdUnitTestCaseAfterStage.gd.uid │ │ │ │ ├── GdUnitTestCaseBeforeStage.gd │ │ │ │ ├── GdUnitTestCaseBeforeStage.gd.uid │ │ │ │ ├── GdUnitTestCaseExecutionStage.gd │ │ │ │ ├── GdUnitTestCaseExecutionStage.gd.uid │ │ │ │ ├── GdUnitTestSuiteAfterStage.gd │ │ │ │ ├── GdUnitTestSuiteAfterStage.gd.uid │ │ │ │ ├── GdUnitTestSuiteBeforeStage.gd │ │ │ │ ├── GdUnitTestSuiteBeforeStage.gd.uid │ │ │ │ ├── GdUnitTestSuiteExecutionStage.gd │ │ │ │ ├── GdUnitTestSuiteExecutionStage.gd.uid │ │ │ │ ├── IGdUnitExecutionStage.gd │ │ │ │ ├── IGdUnitExecutionStage.gd.uid │ │ │ │ ├── fuzzed │ │ │ │ ├── GdUnitTestCaseFuzzedExecutionStage.gd │ │ │ │ ├── GdUnitTestCaseFuzzedExecutionStage.gd.uid │ │ │ │ ├── GdUnitTestCaseFuzzedTestStage.gd │ │ │ │ └── GdUnitTestCaseFuzzedTestStage.gd.uid │ │ │ │ └── single │ │ │ │ ├── GdUnitTestCaseSingleExecutionStage.gd │ │ │ │ ├── GdUnitTestCaseSingleExecutionStage.gd.uid │ │ │ │ ├── GdUnitTestCaseSingleTestStage.gd │ │ │ │ └── GdUnitTestCaseSingleTestStage.gd.uid │ │ ├── hooks │ │ │ ├── GdUnitBaseReporterTestSessionHook.gd │ │ │ ├── GdUnitBaseReporterTestSessionHook.gd.uid │ │ │ ├── GdUnitHtmlReporterTestSessionHook.gd │ │ │ ├── GdUnitHtmlReporterTestSessionHook.gd.uid │ │ │ ├── GdUnitTestSessionHook.gd │ │ │ ├── GdUnitTestSessionHook.gd.uid │ │ │ ├── GdUnitTestSessionHookService.gd │ │ │ ├── GdUnitTestSessionHookService.gd.uid │ │ │ ├── GdUnitXMLReporterTestSessionHook.gd │ │ │ └── GdUnitXMLReporterTestSessionHook.gd.uid │ │ ├── parse │ │ │ ├── GdClassDescriptor.gd │ │ │ ├── GdClassDescriptor.gd.uid │ │ │ ├── GdDefaultValueDecoder.gd │ │ │ ├── GdDefaultValueDecoder.gd.uid │ │ │ ├── GdFunctionArgument.gd │ │ │ ├── GdFunctionArgument.gd.uid │ │ │ ├── GdFunctionDescriptor.gd │ │ │ ├── GdFunctionDescriptor.gd.uid │ │ │ ├── GdFunctionParameterSetResolver.gd │ │ │ ├── GdFunctionParameterSetResolver.gd.uid │ │ │ ├── GdScriptParser.gd │ │ │ ├── GdScriptParser.gd.uid │ │ │ ├── GdUnitExpressionRunner.gd │ │ │ ├── GdUnitExpressionRunner.gd.uid │ │ │ ├── GdUnitTestParameterSetResolver.gd │ │ │ └── GdUnitTestParameterSetResolver.gd.uid │ │ ├── report │ │ │ ├── GdUnitReport.gd │ │ │ └── GdUnitReport.gd.uid │ │ ├── runners │ │ │ ├── GdUnitTestCIRunner.gd │ │ │ ├── GdUnitTestCIRunner.gd.uid │ │ │ ├── GdUnitTestRunner.gd │ │ │ ├── GdUnitTestRunner.gd.uid │ │ │ ├── GdUnitTestRunner.tscn │ │ │ ├── GdUnitTestSession.gd │ │ │ ├── GdUnitTestSession.gd.uid │ │ │ ├── GdUnitTestSessionRunner.gd │ │ │ └── GdUnitTestSessionRunner.gd.uid │ │ ├── templates │ │ │ └── test_suite │ │ │ │ ├── GdUnitTestSuiteDefaultTemplate.gd │ │ │ │ ├── GdUnitTestSuiteDefaultTemplate.gd.uid │ │ │ │ ├── GdUnitTestSuiteTemplate.gd │ │ │ │ └── GdUnitTestSuiteTemplate.gd.uid │ │ ├── thread │ │ │ ├── GdUnitThreadContext.gd │ │ │ ├── GdUnitThreadContext.gd.uid │ │ │ ├── GdUnitThreadManager.gd │ │ │ └── GdUnitThreadManager.gd.uid │ │ └── writers │ │ │ ├── GdUnitCSIMessageWriter.gd │ │ │ ├── GdUnitCSIMessageWriter.gd.uid │ │ │ ├── GdUnitMessageWriter.gd │ │ │ ├── GdUnitMessageWriter.gd.uid │ │ │ ├── GdUnitRichTextMessageWriter.gd │ │ │ └── GdUnitRichTextMessageWriter.gd.uid │ │ ├── dotnet │ │ ├── GdUnit4CSharpApi.cs │ │ ├── GdUnit4CSharpApiLoader.gd │ │ └── GdUnit4CSharpApiLoader.gd.uid │ │ ├── doubler │ │ ├── CallableDoubler.gd │ │ ├── CallableDoubler.gd.uid │ │ ├── GdFunctionDoubler.gd │ │ ├── GdFunctionDoubler.gd.uid │ │ ├── GdUnitClassDoubler.gd │ │ ├── GdUnitClassDoubler.gd.uid │ │ ├── GdUnitFunctionDoublerBuilder.gd │ │ ├── GdUnitFunctionDoublerBuilder.gd.uid │ │ ├── GdUnitMockFunctionDoubler.gd │ │ ├── GdUnitMockFunctionDoubler.gd.uid │ │ ├── GdUnitObjectInteractions.gd │ │ ├── GdUnitObjectInteractions.gd.uid │ │ ├── GdUnitObjectInteractionsVerifier.gd │ │ ├── GdUnitObjectInteractionsVerifier.gd.uid │ │ ├── GdUnitSpyFunctionDoubler.gd │ │ └── GdUnitSpyFunctionDoubler.gd.uid │ │ ├── extractors │ │ ├── GdUnitFuncValueExtractor.gd │ │ └── GdUnitFuncValueExtractor.gd.uid │ │ ├── fuzzers │ │ ├── FloatFuzzer.gd │ │ ├── FloatFuzzer.gd.uid │ │ ├── Fuzzer.gd │ │ ├── Fuzzer.gd.uid │ │ ├── IntFuzzer.gd │ │ ├── IntFuzzer.gd.uid │ │ ├── StringFuzzer.gd │ │ ├── StringFuzzer.gd.uid │ │ ├── Vector2Fuzzer.gd │ │ ├── Vector2Fuzzer.gd.uid │ │ ├── Vector3Fuzzer.gd │ │ └── Vector3Fuzzer.gd.uid │ │ ├── matchers │ │ ├── AnyArgumentMatcher.gd │ │ ├── AnyArgumentMatcher.gd.uid │ │ ├── AnyBuildInTypeArgumentMatcher.gd │ │ ├── AnyBuildInTypeArgumentMatcher.gd.uid │ │ ├── AnyClazzArgumentMatcher.gd │ │ ├── AnyClazzArgumentMatcher.gd.uid │ │ ├── ChainedArgumentMatcher.gd │ │ ├── ChainedArgumentMatcher.gd.uid │ │ ├── EqualsArgumentMatcher.gd │ │ ├── EqualsArgumentMatcher.gd.uid │ │ ├── GdUnitArgumentMatcher.gd │ │ ├── GdUnitArgumentMatcher.gd.uid │ │ ├── GdUnitArgumentMatchers.gd │ │ └── GdUnitArgumentMatchers.gd.uid │ │ ├── mocking │ │ ├── GdUnitMock.gd │ │ ├── GdUnitMock.gd.uid │ │ ├── GdUnitMockBuilder.gd │ │ ├── GdUnitMockBuilder.gd.uid │ │ ├── GdUnitMockImpl.gd │ │ └── GdUnitMockImpl.gd.uid │ │ ├── monitor │ │ ├── ErrorLogEntry.gd │ │ ├── ErrorLogEntry.gd.uid │ │ ├── GdUnitMonitor.gd │ │ ├── GdUnitMonitor.gd.uid │ │ ├── GdUnitOrphanNodesMonitor.gd │ │ ├── GdUnitOrphanNodesMonitor.gd.uid │ │ ├── GodotGdErrorMonitor.gd │ │ └── GodotGdErrorMonitor.gd.uid │ │ ├── network │ │ ├── GdUnitServer.gd │ │ ├── GdUnitServer.gd.uid │ │ ├── GdUnitServer.tscn │ │ ├── GdUnitServerConstants.gd │ │ ├── GdUnitServerConstants.gd.uid │ │ ├── GdUnitTask.gd │ │ ├── GdUnitTask.gd.uid │ │ ├── GdUnitTcpClient.gd │ │ ├── GdUnitTcpClient.gd.uid │ │ ├── GdUnitTcpNode.gd │ │ ├── GdUnitTcpNode.gd.uid │ │ ├── GdUnitTcpServer.gd │ │ ├── GdUnitTcpServer.gd.uid │ │ └── rpc │ │ │ ├── RPC.gd │ │ │ ├── RPC.gd.uid │ │ │ ├── RPCClientConnect.gd │ │ │ ├── RPCClientConnect.gd.uid │ │ │ ├── RPCClientDisconnect.gd │ │ │ ├── RPCClientDisconnect.gd.uid │ │ │ ├── RPCGdUnitEvent.gd │ │ │ ├── RPCGdUnitEvent.gd.uid │ │ │ ├── RPCMessage.gd │ │ │ └── RPCMessage.gd.uid │ │ ├── reporters │ │ ├── GdUnitReportSummary.gd │ │ ├── GdUnitReportSummary.gd.uid │ │ ├── GdUnitReportWriter.gd │ │ ├── GdUnitReportWriter.gd.uid │ │ ├── GdUnitTestCaseReport.gd │ │ ├── GdUnitTestCaseReport.gd.uid │ │ ├── GdUnitTestReporter.gd │ │ ├── GdUnitTestReporter.gd.uid │ │ ├── GdUnitTestSuiteReport.gd │ │ ├── GdUnitTestSuiteReport.gd.uid │ │ ├── console │ │ │ ├── GdUnitConsoleTestReporter.gd │ │ │ └── GdUnitConsoleTestReporter.gd.uid │ │ ├── html │ │ │ ├── GdUnitByPathReport.gd │ │ │ ├── GdUnitByPathReport.gd.uid │ │ │ ├── GdUnitHtmlPatterns.gd │ │ │ ├── GdUnitHtmlPatterns.gd.uid │ │ │ ├── GdUnitHtmlReportWriter.gd │ │ │ ├── GdUnitHtmlReportWriter.gd.uid │ │ │ └── template │ │ │ │ ├── .gdignore │ │ │ │ ├── css │ │ │ │ ├── breadcrumb.css │ │ │ │ ├── logo.png │ │ │ │ └── styles.css │ │ │ │ ├── folder_report.html │ │ │ │ ├── index.html │ │ │ │ └── suite_report.html │ │ └── xml │ │ │ ├── JUnitXmlReportWriter.gd │ │ │ ├── JUnitXmlReportWriter.gd.uid │ │ │ ├── XmlElement.gd │ │ │ └── XmlElement.gd.uid │ │ ├── spy │ │ ├── GdUnitSpyBuilder.gd │ │ ├── GdUnitSpyBuilder.gd.uid │ │ ├── GdUnitSpyImpl.gd │ │ └── GdUnitSpyImpl.gd.uid │ │ ├── ui │ │ ├── GdUnitConsole.gd │ │ ├── GdUnitConsole.gd.uid │ │ ├── GdUnitConsole.tscn │ │ ├── GdUnitFonts.gd │ │ ├── GdUnitFonts.gd.uid │ │ ├── GdUnitInspector.gd │ │ ├── GdUnitInspector.gd.uid │ │ ├── GdUnitInspector.tscn │ │ ├── GdUnitInspectorTreeConstants.gd │ │ ├── GdUnitInspectorTreeConstants.gd.uid │ │ ├── GdUnitUiTools.gd │ │ ├── GdUnitUiTools.gd.uid │ │ ├── ScriptEditorControls.gd │ │ ├── ScriptEditorControls.gd.uid │ │ ├── menu │ │ │ ├── EditorFileSystemContextMenuHandler.gd │ │ │ ├── EditorFileSystemContextMenuHandler.gd.uid │ │ │ ├── EditorFileSystemContextMenuHandlerV44.gdx │ │ │ ├── GdUnitContextMenuItem.gd │ │ │ ├── GdUnitContextMenuItem.gd.uid │ │ │ ├── ScriptEditorContextMenuHandler.gd │ │ │ ├── ScriptEditorContextMenuHandler.gd.uid │ │ │ └── ScriptEditorContextMenuHandlerV44.gdx │ │ ├── parts │ │ │ ├── InspectorMonitor.gd │ │ │ ├── InspectorMonitor.gd.uid │ │ │ ├── InspectorMonitor.tscn │ │ │ ├── InspectorProgressBar.gd │ │ │ ├── InspectorProgressBar.gd.uid │ │ │ ├── InspectorProgressBar.tscn │ │ │ ├── InspectorStatusBar.gd │ │ │ ├── InspectorStatusBar.gd.uid │ │ │ ├── InspectorStatusBar.tscn │ │ │ ├── InspectorToolBar.gd │ │ │ ├── InspectorToolBar.gd.uid │ │ │ ├── InspectorToolBar.tscn │ │ │ ├── InspectorTreeMainPanel.gd │ │ │ ├── InspectorTreeMainPanel.gd.uid │ │ │ └── InspectorTreePanel.tscn │ │ ├── settings │ │ │ ├── GdUnitInputCapture.gd │ │ │ ├── GdUnitInputCapture.gd.uid │ │ │ ├── GdUnitInputCapture.tscn │ │ │ ├── GdUnitSettingsDialog.gd │ │ │ ├── GdUnitSettingsDialog.gd.uid │ │ │ ├── GdUnitSettingsDialog.tscn │ │ │ ├── GdUnitSettingsTabHooks.gd │ │ │ ├── GdUnitSettingsTabHooks.gd.uid │ │ │ ├── GdUnitSettingsTabHooks.tscn │ │ │ ├── logo.png │ │ │ └── logo.png.import │ │ └── templates │ │ │ ├── TestSuiteTemplate.gd │ │ │ ├── TestSuiteTemplate.gd.uid │ │ │ └── TestSuiteTemplate.tscn │ │ └── update │ │ ├── GdMarkDownReader.gd │ │ ├── GdMarkDownReader.gd.uid │ │ ├── GdUnitPatch.gd │ │ ├── GdUnitPatch.gd.uid │ │ ├── GdUnitPatcher.gd │ │ ├── GdUnitPatcher.gd.uid │ │ ├── GdUnitUpdate.gd │ │ ├── GdUnitUpdate.gd.uid │ │ ├── GdUnitUpdate.tscn │ │ ├── GdUnitUpdateClient.gd │ │ ├── GdUnitUpdateClient.gd.uid │ │ ├── GdUnitUpdateNotify.gd │ │ ├── GdUnitUpdateNotify.gd.uid │ │ ├── GdUnitUpdateNotify.tscn │ │ └── assets │ │ ├── border_bottom.png │ │ ├── border_bottom.png.import │ │ ├── border_top.png │ │ ├── border_top.png.import │ │ ├── dot1.png │ │ ├── dot1.png.import │ │ ├── dot2.png │ │ ├── dot2.png.import │ │ ├── embedded.png │ │ ├── embedded.png.import │ │ ├── horizontal-line2.png │ │ └── horizontal-line2.png.import ├── gecs │ ├── LICENSE │ ├── README.md │ ├── assets │ │ ├── component.svg │ │ ├── component.svg.import │ │ ├── entity.svg │ │ ├── entity.svg.import │ │ ├── gecs-logo.psd │ │ ├── logo.png │ │ ├── logo.png.import │ │ ├── observer.svg │ │ ├── observer.svg.import │ │ ├── system.svg │ │ ├── system.svg.import │ │ ├── system_folder.svg │ │ ├── system_folder.svg.import │ │ ├── world.svg │ │ └── world.svg.import │ ├── debug │ │ ├── gecs_editor_debugger.gd │ │ ├── gecs_editor_debugger.gd.uid │ │ ├── gecs_editor_debugger_messages.gd │ │ ├── gecs_editor_debugger_messages.gd.uid │ │ ├── gecs_editor_debugger_tab.gd │ │ ├── gecs_editor_debugger_tab.gd.uid │ │ └── gecs_editor_debugger_tab.tscn │ ├── docs │ │ ├── BEST_PRACTICES.md │ │ ├── COMPONENT_QUERIES.md │ │ ├── CORE_CONCEPTS.md │ │ ├── DEBUG_VIEWER.md │ │ ├── GETTING_STARTED.md │ │ ├── OBSERVERS.md │ │ ├── PERFORMANCE_OPTIMIZATION.md │ │ ├── PERFORMANCE_TESTING.md │ │ ├── RELATIONSHIPS.md │ │ ├── SERIALIZATION.md │ │ └── TROUBLESHOOTING.md │ ├── ecs │ │ ├── archetype.gd │ │ ├── archetype.gd.uid │ │ ├── component.gd │ │ ├── component.gd.uid │ │ ├── ecs.gd │ │ ├── ecs.gd.uid │ │ ├── entity.gd │ │ ├── entity.gd.uid │ │ ├── observer.gd │ │ ├── observer.gd.uid │ │ ├── query_builder.gd │ │ ├── query_builder.gd.uid │ │ ├── query_cache_key.gd │ │ ├── query_cache_key.gd.uid │ │ ├── relationship.gd │ │ ├── relationship.gd.uid │ │ ├── system.gd │ │ ├── system.gd.uid │ │ ├── world.gd │ │ └── world.gd.uid │ ├── io │ │ ├── gecs_data.gd │ │ ├── gecs_data.gd.uid │ │ ├── gecs_entity_data.gd │ │ ├── gecs_entity_data.gd.uid │ │ ├── gecs_relationship_data.gd │ │ ├── gecs_relationship_data.gd.uid │ │ ├── io.gd │ │ ├── io.gd.uid │ │ ├── serialize_config.gd │ │ └── serialize_config.gd.uid │ ├── lib │ │ ├── array_extensions.gd │ │ ├── array_extensions.gd.uid │ │ ├── component_query_matcher.gd │ │ ├── component_query_matcher.gd.uid │ │ ├── gecs_settings.gd │ │ ├── gecs_settings.gd.uid │ │ ├── logger.gd │ │ ├── logger.gd.uid │ │ ├── set.gd │ │ ├── set.gd.uid │ │ ├── system_group.gd │ │ └── system_group.gd.uid │ ├── plugin.cfg │ ├── plugin.gd │ ├── plugin.gd.uid │ └── tests │ │ ├── components │ │ ├── c_complex_serialization_test.gd │ │ ├── c_complex_serialization_test.gd.uid │ │ ├── c_debug_tracking_test_a.gd │ │ ├── c_debug_tracking_test_a.gd.uid │ │ ├── c_debug_tracking_test_b.gd │ │ ├── c_debug_tracking_test_b.gd.uid │ │ ├── c_domain_test_a.gd │ │ ├── c_domain_test_a.gd.uid │ │ ├── c_domain_test_b.gd │ │ ├── c_domain_test_b.gd.uid │ │ ├── c_observer_health.gd │ │ ├── c_observer_health.gd.uid │ │ ├── c_observer_test.gd │ │ ├── c_observer_test.gd.uid │ │ ├── c_order_test_a.gd │ │ ├── c_order_test_a.gd.uid │ │ ├── c_order_test_b.gd │ │ ├── c_order_test_b.gd.uid │ │ ├── c_order_test_c.gd │ │ ├── c_order_test_c.gd.uid │ │ ├── c_order_test_d.gd │ │ ├── c_order_test_d.gd.uid │ │ ├── c_order_test_e.gd │ │ ├── c_order_test_e.gd.uid │ │ ├── c_order_test_f.gd │ │ ├── c_order_test_f.gd.uid │ │ ├── c_order_test_g.gd │ │ ├── c_order_test_g.gd.uid │ │ ├── c_order_test_h.gd │ │ ├── c_order_test_h.gd.uid │ │ ├── c_order_test_i.gd │ │ ├── c_order_test_i.gd.uid │ │ ├── c_order_test_j.gd │ │ ├── c_order_test_j.gd.uid │ │ ├── c_order_test_k.gd │ │ ├── c_order_test_k.gd.uid │ │ ├── c_order_test_l.gd │ │ ├── c_order_test_l.gd.uid │ │ ├── c_order_test_m.gd │ │ ├── c_order_test_m.gd.uid │ │ ├── c_order_test_n.gd │ │ ├── c_order_test_n.gd.uid │ │ ├── c_order_test_o.gd │ │ ├── c_order_test_o.gd.uid │ │ ├── c_perm_a.gd │ │ ├── c_perm_a.gd.uid │ │ ├── c_perm_b.gd │ │ ├── c_perm_b.gd.uid │ │ ├── c_perm_c.gd │ │ ├── c_perm_c.gd.uid │ │ ├── c_perm_d.gd │ │ ├── c_perm_d.gd.uid │ │ ├── c_perm_e.gd │ │ ├── c_perm_e.gd.uid │ │ ├── c_perm_f.gd │ │ ├── c_perm_f.gd.uid │ │ ├── c_persistent.gd │ │ ├── c_persistent.gd.uid │ │ ├── c_position.gd │ │ ├── c_position.gd.uid │ │ ├── c_serialization_test.gd │ │ ├── c_serialization_test.gd.uid │ │ ├── c_test_a.gd │ │ ├── c_test_a.gd.uid │ │ ├── c_test_b.gd │ │ ├── c_test_b.gd.uid │ │ ├── c_test_c.gd │ │ ├── c_test_c.gd.uid │ │ ├── c_test_d.gd │ │ ├── c_test_d.gd.uid │ │ ├── c_test_e.gd │ │ ├── c_test_e.gd.uid │ │ ├── c_test_f.gd │ │ ├── c_test_f.gd.uid │ │ ├── c_test_g.gd │ │ ├── c_test_g.gd.uid │ │ ├── c_test_h.gd │ │ ├── c_test_h.gd.uid │ │ ├── c_velocity.gd │ │ └── c_velocity.gd.uid │ │ ├── core │ │ ├── test_archetype_edge_cache.gd │ │ ├── test_archetype_edge_cache.gd.uid │ │ ├── test_archetype_systems.gd │ │ ├── test_archetype_systems.gd.uid │ │ ├── test_complex_relationship_serialization.gd │ │ ├── test_complex_relationship_serialization.gd.uid │ │ ├── test_component.gd │ │ ├── test_component.gd.uid │ │ ├── test_debug_tracking.gd │ │ ├── test_debug_tracking.gd.uid │ │ ├── test_entity.gd │ │ ├── test_entity.gd.uid │ │ ├── test_entity_id_system.gd │ │ ├── test_entity_id_system.gd.uid │ │ ├── test_observers.gd │ │ ├── test_observers.gd.uid │ │ ├── test_query_builder.gd │ │ ├── test_query_builder.gd.uid │ │ ├── test_query_cache_key_domains.gd │ │ ├── test_query_cache_key_domains.gd.uid │ │ ├── test_query_domain_permutations.gd │ │ ├── test_query_domain_permutations.gd.uid │ │ ├── test_query_order_insensitivity.gd │ │ ├── test_query_order_insensitivity.gd.uid │ │ ├── test_relationship_hash.gd │ │ ├── test_relationship_hash.gd.uid │ │ ├── test_relationship_serialization.gd │ │ ├── test_relationship_serialization.gd.uid │ │ ├── test_relationships.gd │ │ ├── test_relationships.gd.uid │ │ ├── test_simple_serialization.gd │ │ ├── test_simple_serialization.gd.uid │ │ ├── test_subsystem_component_propagation.gd │ │ ├── test_subsystem_component_propagation.gd.uid │ │ ├── test_subsystem_multi_entity_propagation.gd │ │ ├── test_subsystem_multi_entity_propagation.gd.uid │ │ ├── test_subsystem_relationship_bug.gd │ │ ├── test_subsystem_relationship_bug.gd.uid │ │ ├── test_subsystems.gd │ │ ├── test_subsystems.gd.uid │ │ ├── test_system.gd │ │ ├── test_system.gd.uid │ │ ├── test_topological_sort_execution_order.gd │ │ ├── test_topological_sort_execution_order.gd.uid │ │ ├── test_world.gd │ │ ├── test_world.gd.uid │ │ ├── test_world_cache_invalidation.gd │ │ ├── test_world_cache_invalidation.gd.uid │ │ ├── test_world_serialization.gd │ │ ├── test_world_serialization.gd.uid │ │ ├── tests_array_extensions.gd │ │ └── tests_array_extensions.gd.uid │ │ ├── debug │ │ ├── test_editor_debugger_tab_metrics.gd │ │ └── test_editor_debugger_tab_metrics.gd.uid │ │ ├── entities │ │ ├── e_complex_serialization_test.gd │ │ ├── e_complex_serialization_test.gd.uid │ │ ├── e_gecs_food.gd │ │ ├── e_gecs_food.gd.uid │ │ ├── e_prefab_test.gd │ │ ├── e_prefab_test.gd.uid │ │ ├── e_prefab_test.tscn │ │ ├── e_serialization_test.gd │ │ ├── e_serialization_test.gd.uid │ │ ├── e_test_a.gd │ │ ├── e_test_a.gd.uid │ │ ├── e_test_b.gd │ │ ├── e_test_b.gd.uid │ │ ├── e_test_c.gd │ │ ├── e_test_c.gd.uid │ │ ├── e_test_d.gd │ │ └── e_test_d.gd.uid │ │ ├── performance │ │ ├── perf_helpers.gd │ │ ├── perf_helpers.gd.uid │ │ ├── performance_regression_detector.gd.uid │ │ ├── performance_test_arrays.gd.uid │ │ ├── performance_test_base.gd.uid │ │ ├── performance_test_components.gd.uid │ │ ├── performance_test_entities.gd.uid │ │ ├── performance_test_integration.gd.uid │ │ ├── performance_test_queries.gd.uid │ │ ├── performance_test_sets.gd.uid │ │ ├── performance_test_system_process.gd.uid │ │ ├── performance_test_systems.gd.uid │ │ ├── test_cache_debug.gd │ │ ├── test_cache_debug.gd.uid │ │ ├── test_cache_key_perf.gd │ │ ├── test_cache_key_perf.gd.uid │ │ ├── test_component_perf.gd │ │ ├── test_component_perf.gd.uid │ │ ├── test_entity_perf.gd │ │ ├── test_entity_perf.gd.uid │ │ ├── test_hotpath_breakdown.gd │ │ ├── test_hotpath_breakdown.gd.uid │ │ ├── test_indexing_perf.gd │ │ ├── test_indexing_perf.gd.uid │ │ ├── test_observer_perf.gd │ │ ├── test_observer_perf.gd.uid │ │ ├── test_query_perf.gd │ │ ├── test_query_perf.gd.uid │ │ ├── test_set_perf.gd │ │ ├── test_set_perf.gd.uid │ │ ├── test_system_perf.gd │ │ └── test_system_perf.gd.uid │ │ ├── systems │ │ ├── c_test_order_component.gd │ │ ├── c_test_order_component.gd.uid │ │ ├── o_health_observer.gd │ │ ├── o_health_observer.gd.uid │ │ ├── o_observer_test.gd │ │ ├── o_observer_test.gd.uid │ │ ├── o_performance_test.gd │ │ ├── o_performance_test.gd.uid │ │ ├── o_relationship_observer.gd │ │ ├── o_relationship_observer.gd.uid │ │ ├── o_test_a.gd │ │ ├── o_test_a.gd.uid │ │ ├── o_velocity_observer.gd │ │ ├── o_velocity_observer.gd.uid │ │ ├── r_s_test_a.gd.uid │ │ ├── s_archetype_column_data_test.gd │ │ ├── s_archetype_column_data_test.gd.uid │ │ ├── s_archetype_modify_test.gd │ │ ├── s_archetype_modify_test.gd.uid │ │ ├── s_archetype_multiple_archetypes_test.gd │ │ ├── s_archetype_multiple_archetypes_test.gd.uid │ │ ├── s_archetype_no_iterate.gd │ │ ├── s_archetype_no_iterate.gd.uid │ │ ├── s_archetype_order_test.gd │ │ ├── s_archetype_order_test.gd.uid │ │ ├── s_archetype_subset_test.gd │ │ ├── s_archetype_subset_test.gd.uid │ │ ├── s_archetype_test.gd │ │ ├── s_archetype_test.gd.uid │ │ ├── s_complex_performance_test.gd │ │ ├── s_complex_performance_test.gd.uid │ │ ├── s_noop.gd │ │ ├── s_noop.gd.uid │ │ ├── s_performance_test.gd │ │ ├── s_performance_test.gd.uid │ │ ├── s_process_test_a.gd │ │ ├── s_process_test_a.gd.uid │ │ ├── s_process_test_b.gd │ │ ├── s_process_test_b.gd.uid │ │ ├── s_test_a.gd │ │ ├── s_test_a.gd.uid │ │ ├── s_test_b.gd │ │ ├── s_test_b.gd.uid │ │ ├── s_test_c.gd │ │ ├── s_test_c.gd.uid │ │ ├── s_test_d.gd │ │ ├── s_test_d.gd.uid │ │ ├── s_test_nonexistent_group.gd │ │ ├── s_test_nonexistent_group.gd.uid │ │ ├── s_test_order_a.gd │ │ ├── s_test_order_a.gd.uid │ │ ├── s_test_order_b.gd │ │ ├── s_test_order_b.gd.uid │ │ ├── s_test_order_c.gd │ │ ├── s_test_order_c.gd.uid │ │ ├── s_test_order_d.gd │ │ ├── s_test_order_d.gd.uid │ │ ├── s_test_order_e.gd │ │ ├── s_test_order_e.gd.uid │ │ ├── s_test_order_f.gd │ │ ├── s_test_order_f.gd.uid │ │ ├── s_test_order_g.gd │ │ ├── s_test_order_g.gd.uid │ │ ├── s_test_order_h.gd │ │ ├── s_test_order_h.gd.uid │ │ ├── s_test_order_x.gd │ │ ├── s_test_order_x.gd.uid │ │ ├── s_test_order_y.gd │ │ ├── s_test_order_y.gd.uid │ │ ├── s_test_order_z.gd │ │ ├── s_test_order_z.gd.uid │ │ ├── s_test_with_group.gd │ │ ├── s_test_with_group.gd.uid │ │ ├── s_test_with_relationship.gd │ │ ├── s_test_with_relationship.gd.uid │ │ ├── s_test_without_group.gd │ │ ├── s_test_without_group.gd.uid │ │ ├── s_test_without_relationship.gd │ │ ├── s_test_without_relationship.gd.uid │ │ ├── s_velocity_system.gd │ │ └── s_velocity_system.gd.uid │ │ ├── test_component.gd.uid │ │ ├── test_entity.gd.uid │ │ ├── test_observers.gd.uid │ │ ├── test_queries.gd.uid │ │ ├── test_query_builder.gd.uid │ │ ├── test_relationships.gd.uid │ │ ├── test_scene.gd │ │ ├── test_scene.gd.uid │ │ ├── test_scene.tscn │ │ ├── test_system.gd.uid │ │ ├── test_world.gd.uid │ │ └── tests_array_extensions.gd.uid └── godot-plugin-refresher │ ├── LICENSE │ ├── plugin.cfg │ ├── plugin_refresher.gd │ ├── plugin_refresher.gd.uid │ ├── plugin_refresher.tscn │ ├── plugin_refresher_plugin.gd │ └── plugin_refresher_plugin.gd.uid ├── analyze_perf.py ├── example ├── components │ ├── c_lifetime.gd │ ├── c_lifetime.gd.uid │ ├── c_timer.gd │ ├── c_timer.gd.uid │ ├── c_velocity.gd │ └── c_velocity.gd.uid ├── entities │ ├── random_mover.gd │ ├── random_mover.gd.uid │ └── random_mover.tscn ├── lib │ ├── entity_visible_on_screen_enabler_3d.gd │ ├── entity_visible_on_screen_enabler_3d.gd.uid │ └── entity_visible_on_screen_enabler_3d.tscn ├── main.gd ├── main.gd.uid ├── main.tscn └── systems │ ├── s_lifetime.gd │ ├── s_lifetime.gd.uid │ ├── s_random_spawner.gd │ ├── s_random_spawner.gd.uid │ ├── s_random_velocity.gd │ ├── s_random_velocity.gd.uid │ ├── s_velocity.gd │ └── s_velocity.gd.uid ├── export_presets.cfg ├── project.godot ├── release └── web │ └── serve.py ├── script_templates ├── .gdignore ├── Node │ ├── component.gd.uid │ ├── entity.gd │ ├── observer.gd │ └── system.gd └── Resource │ └── component.gd └── tools └── grafana ├── GRAFANA_SETUP.md ├── docker-compose.yml ├── load_jsonl_to_influx.py ├── provisioning ├── dashboards │ ├── dashboard.yml │ ├── gecs-performance-detailed.json │ ├── gecs-performance-simple.json │ └── gecs-performance.json └── datasources │ └── influxdb.yml └── test_queries.md /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/actions/setup-release/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/.github/actions/setup-release/action.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/README.md -------------------------------------------------------------------------------- /addons/debug_menu/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/debug_menu/LICENSE.md -------------------------------------------------------------------------------- /addons/debug_menu/debug_menu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/debug_menu/debug_menu.gd -------------------------------------------------------------------------------- /addons/debug_menu/debug_menu.gd.uid: -------------------------------------------------------------------------------- 1 | uid://datrr7iu7jc62 2 | -------------------------------------------------------------------------------- /addons/debug_menu/debug_menu.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/debug_menu/debug_menu.tscn -------------------------------------------------------------------------------- /addons/debug_menu/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/debug_menu/plugin.cfg -------------------------------------------------------------------------------- /addons/debug_menu/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/debug_menu/plugin.gd -------------------------------------------------------------------------------- /addons/debug_menu/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://pb60bcxfhgp2 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/GdUnitRunner.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/GdUnitRunner.cfg -------------------------------------------------------------------------------- /addons/gdUnit4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/LICENSE -------------------------------------------------------------------------------- /addons/gdUnit4/bin/GdUnitCmdTool.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/bin/GdUnitCmdTool.gd -------------------------------------------------------------------------------- /addons/gdUnit4/bin/GdUnitCmdTool.gd.uid: -------------------------------------------------------------------------------- 1 | uid://chdvqgrairx2r 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/bin/GdUnitCopyLog.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/bin/GdUnitCopyLog.gd -------------------------------------------------------------------------------- /addons/gdUnit4/bin/GdUnitCopyLog.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cca26e4thsgr2 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/plugin.cfg -------------------------------------------------------------------------------- /addons/gdUnit4/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/plugin.gd -------------------------------------------------------------------------------- /addons/gdUnit4/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ddael08u8cd37 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/runtest.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/runtest.cmd -------------------------------------------------------------------------------- /addons/gdUnit4/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/runtest.sh -------------------------------------------------------------------------------- /addons/gdUnit4/src/Comparator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/Comparator.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/Comparator.gd.uid: -------------------------------------------------------------------------------- 1 | uid://diowb66hireor 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/Fuzzers.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/Fuzzers.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/Fuzzers.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b5k74b3q0djbr 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitArrayAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitArrayAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitArrayAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b7jtmrldpoyys 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b8ypyyuevakpd 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitAwaiter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitAwaiter.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitAwaiter.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cmpgcgbf1v3he 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitBoolAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitBoolAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitBoolAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://caidddxgb3yj 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitConstants.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitConstants.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitConstants.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dgclscvuh5v84 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitDictionaryAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitDictionaryAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitDictionaryAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bu6473b8ymdyh 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitFailureAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitFailureAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitFailureAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c2itwjhst3f1j 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitFileAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitFileAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitFileAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dw44nkyt05u6h 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitFloatAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitFloatAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitFloatAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://x57gp00db8lb 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitFuncAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitFuncAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitFuncAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dq7qrmge6m2ug 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitGodotErrorAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitGodotErrorAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitGodotErrorAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bv0opv8h54qk0 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitIntAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitIntAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitIntAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b56cu45wqwctd 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitObjectAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitObjectAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitObjectAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://huu1od8c2rtu 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitResultAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitResultAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitResultAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b0xr5fcj2q42p 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitSceneRunner.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitSceneRunner.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitSceneRunner.gd.uid: -------------------------------------------------------------------------------- 1 | uid://2q5oityuhdkr 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitSignalAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitSignalAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitSignalAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://mbxuu2iwaq2 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitStringAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitStringAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitStringAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://haccmssdxpsq 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitTestSuite.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitTestSuite.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitTestSuite.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bvnw1dvfilyp3 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitTuple.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitTuple.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitTuple.gd.uid: -------------------------------------------------------------------------------- 1 | uid://3biuc1g6112i 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitValueExtractor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitValueExtractor.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitValueExtractor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bldih0qi4d5k4 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitVectorAssert.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/GdUnitVectorAssert.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/GdUnitVectorAssert.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bqqs7cg70gaw2 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/CallBackValueProvider.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/CallBackValueProvider.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/CallBackValueProvider.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cxwhijm17t4gi 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/DefaultValueProvider.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/DefaultValueProvider.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/DefaultValueProvider.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c8rypp0tibdrq 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdAssertMessages.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdAssertMessages.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdAssertMessages.gd.uid: -------------------------------------------------------------------------------- 1 | uid://vy15s8xjek4s 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdAssertReports.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdAssertReports.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdAssertReports.gd.uid: -------------------------------------------------------------------------------- 1 | uid://6vkjauii7gha 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitArrayAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitArrayAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitArrayAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ltwqaslcmub0 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bs5xosk58gxia 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitAssertions.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitAssertions.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitAssertions.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cs8lnu7bwdr3x 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitBoolAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitBoolAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitBoolAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ul5ajqk7fu8g 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitDictionaryAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitDictionaryAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitDictionaryAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b2xhkirk7f76x 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitFailureAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitFailureAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitFailureAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bte1ip8x1fse7 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitFileAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitFileAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitFileAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ceaoc5gsdw5iw 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitFloatAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitFloatAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitFloatAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dv7lqw52d0wab 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitFuncAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitFuncAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitFuncAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dhs4rkw88l0vq 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitGodotErrorAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitGodotErrorAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitGodotErrorAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bbokpm06helow 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitIntAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitIntAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitIntAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://detx7vuayqooh 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitObjectAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitObjectAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitObjectAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bst3r5k8f6evn 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitResultAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitResultAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitResultAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cwnck5nc2l32s 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitSignalAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitSignalAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitSignalAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bube5lu6sl3d1 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitStringAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitStringAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitStringAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dwodh1yw0gyaw 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitVectorAssertImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/GdUnitVectorAssertImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/GdUnitVectorAssertImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dxyx0rdumvvu8 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/ValueProvider.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/asserts/ValueProvider.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/asserts/ValueProvider.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bct18w8cw1xxd 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/cmd/CmdArgumentParser.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/cmd/CmdArgumentParser.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/cmd/CmdArgumentParser.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c2b2qn3d88c3v 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/cmd/CmdCommand.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/cmd/CmdCommand.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/cmd/CmdCommand.gd.uid: -------------------------------------------------------------------------------- 1 | uid://8ufljsi4mj40 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/cmd/CmdCommandHandler.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/cmd/CmdCommandHandler.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/cmd/CmdCommandHandler.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d0b2bvfg8av2f 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/cmd/CmdOption.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/cmd/CmdOption.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/cmd/CmdOption.gd.uid: -------------------------------------------------------------------------------- 1 | uid://hps2c4og40yu 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/cmd/CmdOptions.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/cmd/CmdOptions.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/cmd/CmdOptions.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b28ifyiobyc3b 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdArrayTools.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdArrayTools.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdArrayTools.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dja3iem04c17x 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdDiffTool.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdDiffTool.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdDiffTool.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c7anyxojp1a63 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdObjects.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdObjects.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdObjects.gd.uid: -------------------------------------------------------------------------------- 1 | uid://hc2odn3d2lov 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnit4Version.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnit4Version.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnit4Version.gd.uid: -------------------------------------------------------------------------------- 1 | uid://crrvklhb1vxj4 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitFileAccess.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnitFileAccess.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitFileAccess.gd.uid: -------------------------------------------------------------------------------- 1 | uid://07p3yf11755u 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitProperty.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnitProperty.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitProperty.gd.uid: -------------------------------------------------------------------------------- 1 | uid://blsgr6udd4asq 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitResult.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnitResult.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitResult.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dldi7wm4cqk13 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitRunnerConfig.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnitRunnerConfig.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitRunnerConfig.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cu2erwwch03o8 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitSceneRunnerImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnitSceneRunnerImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitSceneRunnerImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://de2y23dh4aepm 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitSettings.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnitSettings.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitSettings.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dk7bm1nqf5bf6 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitSignalAwaiter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnitSignalAwaiter.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitSignalAwaiter.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ca8mcf88y78r7 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitSignalCollector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnitSignalCollector.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitSignalCollector.gd.uid: -------------------------------------------------------------------------------- 1 | uid://egq48khdrto7 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitSignals.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnitSignals.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitSignals.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cual5ybsgqkkr 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitSingleton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnitSingleton.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitSingleton.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b06vn4t0dkoa5 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitTestResourceLoader.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnitTestResourceLoader.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitTestResourceLoader.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cywd5x07nj5bk 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitTestSuiteBuilder.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnitTestSuiteBuilder.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitTestSuiteBuilder.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dgqbjtlkjt6cq 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitTestSuiteScanner.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnitTestSuiteScanner.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitTestSuiteScanner.gd.uid: -------------------------------------------------------------------------------- 1 | uid://0rglpdu4cghb 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitTools.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GdUnitTools.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GdUnitTools.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dgw6lp43m1uxa 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GodotVersionFixures.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/GodotVersionFixures.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/GodotVersionFixures.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ctcxd1l26q2ow 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/LocalTime.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/LocalTime.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/LocalTime.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dpsbsdwgrdw6t 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/_TestCase.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/_TestCase.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/_TestCase.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bk3ollgp8yni5 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/assets/touch-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/assets/touch-button.png -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/assets/touch-button.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/assets/touch-button.png.import -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/attributes/TestCaseAttribute.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/attributes/TestCaseAttribute.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/attributes/TestCaseAttribute.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bw0mu8xsmkv7 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/command/GdUnitCommand.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/command/GdUnitCommand.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/command/GdUnitCommand.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b6jqo0obi0tqw 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/command/GdUnitCommandHandler.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/command/GdUnitCommandHandler.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/command/GdUnitCommandHandler.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dq7gchyc2bw6h 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/command/GdUnitShortcut.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/command/GdUnitShortcut.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/command/GdUnitShortcut.gd.uid: -------------------------------------------------------------------------------- 1 | uid://clxc017i3aoyy 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/command/GdUnitShortcutAction.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/command/GdUnitShortcutAction.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/command/GdUnitShortcutAction.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d3yxmr84geinm 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/discovery/GdUnitGUID.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/discovery/GdUnitGUID.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/discovery/GdUnitGUID.gd.uid: -------------------------------------------------------------------------------- 1 | uid://badb6bi2hc0i5 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/discovery/GdUnitTestCase.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/discovery/GdUnitTestCase.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/discovery/GdUnitTestCase.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bwjtnx6u41kt8 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverGuard.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverGuard.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverGuard.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c7ompeswepwdn 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverSink.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverSink.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverSink.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cx6youvu7ogfb 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverer.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://g7155gj4bdqv 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/event/GdUnitEvent.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/event/GdUnitEvent.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/event/GdUnitEvent.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dsnehfo2jgdo7 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/event/GdUnitEventInit.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/event/GdUnitEventInit.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/event/GdUnitEventInit.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c6dq5ga07rna6 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/event/GdUnitEventStop.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/event/GdUnitEventStop.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/event/GdUnitEventStop.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dbedmchp2o040 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/event/GdUnitEventTestDiscoverEnd.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/event/GdUnitEventTestDiscoverEnd.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/event/GdUnitEventTestDiscoverEnd.gd.uid: -------------------------------------------------------------------------------- 1 | uid://o01l4uax3r1b 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/event/GdUnitEventTestDiscoverStart.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/event/GdUnitEventTestDiscoverStart.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/event/GdUnitEventTestDiscoverStart.gd.uid: -------------------------------------------------------------------------------- 1 | uid://opik40ogrfok 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/event/GdUnitSessionClose.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/event/GdUnitSessionClose.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/event/GdUnitSessionClose.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cuocq0rrl8s3u 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/event/GdUnitSessionStart.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/event/GdUnitSessionStart.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/event/GdUnitSessionStart.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bjakxvhrhy8fy 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/GdUnitExecutionContext.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/execution/GdUnitExecutionContext.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/GdUnitExecutionContext.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d12y60lq2ehec 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/GdUnitMemoryObserver.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/execution/GdUnitMemoryObserver.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/GdUnitMemoryObserver.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bf4ooevpom8jp 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/GdUnitTestReportCollector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/execution/GdUnitTestReportCollector.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/GdUnitTestReportCollector.gd.uid: -------------------------------------------------------------------------------- 1 | uid://csuxf3wljukmn 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/GdUnitTestSuiteExecutor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/execution/GdUnitTestSuiteExecutor.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/GdUnitTestSuiteExecutor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cpnagercld5mi 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseAfterStage.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseAfterStage.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseAfterStage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://deacd1mgnnwt5 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseBeforeStage.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseBeforeStage.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseBeforeStage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://builxwwc0etwk 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseExecutionStage.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseExecutionStage.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseExecutionStage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://2loby2n2r1lu 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteAfterStage.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteAfterStage.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteAfterStage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c16nrh5nfu16n 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteBeforeStage.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteBeforeStage.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteBeforeStage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ciwm6k04llsr 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteExecutionStage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dl5y1yq8my0h0 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/IGdUnitExecutionStage.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/execution/stages/IGdUnitExecutionStage.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/IGdUnitExecutionStage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dggrqeqhhio6x 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/fuzzed/GdUnitTestCaseFuzzedExecutionStage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ma4c3hq2rq4q 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/fuzzed/GdUnitTestCaseFuzzedTestStage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cg5mg83fplhoi 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/single/GdUnitTestCaseSingleExecutionStage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ctt2ewnn65o8i 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/execution/stages/single/GdUnitTestCaseSingleTestStage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://di38e7i5300v3 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/hooks/GdUnitBaseReporterTestSessionHook.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/hooks/GdUnitBaseReporterTestSessionHook.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/hooks/GdUnitBaseReporterTestSessionHook.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bgi1xunfmp5kt 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/hooks/GdUnitHtmlReporterTestSessionHook.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/hooks/GdUnitHtmlReporterTestSessionHook.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/hooks/GdUnitHtmlReporterTestSessionHook.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cb5cnllfg3rbu 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/hooks/GdUnitTestSessionHook.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/hooks/GdUnitTestSessionHook.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/hooks/GdUnitTestSessionHook.gd.uid: -------------------------------------------------------------------------------- 1 | uid://yqv0u1wv1t5n 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/hooks/GdUnitTestSessionHookService.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/hooks/GdUnitTestSessionHookService.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/hooks/GdUnitTestSessionHookService.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cl0oj38pa505h 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/hooks/GdUnitXMLReporterTestSessionHook.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/hooks/GdUnitXMLReporterTestSessionHook.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/hooks/GdUnitXMLReporterTestSessionHook.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dpkuec7sqkjwa 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdClassDescriptor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/parse/GdClassDescriptor.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdClassDescriptor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ducxo0kxs4c4d 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdDefaultValueDecoder.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/parse/GdDefaultValueDecoder.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdDefaultValueDecoder.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bvq0bv1bg8m5f 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdFunctionArgument.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/parse/GdFunctionArgument.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdFunctionArgument.gd.uid: -------------------------------------------------------------------------------- 1 | uid://v7mgo6qqnmru 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdFunctionDescriptor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/parse/GdFunctionDescriptor.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdFunctionDescriptor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d1s705d1jgmrc 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdFunctionParameterSetResolver.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/parse/GdFunctionParameterSetResolver.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdFunctionParameterSetResolver.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d3gni2yikju4m 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdScriptParser.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/parse/GdScriptParser.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdScriptParser.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cxtbue2vt4k5j 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdUnitExpressionRunner.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/parse/GdUnitExpressionRunner.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdUnitExpressionRunner.gd.uid: -------------------------------------------------------------------------------- 1 | uid://r3oh5dgq8l7e 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdUnitTestParameterSetResolver.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/parse/GdUnitTestParameterSetResolver.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/parse/GdUnitTestParameterSetResolver.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c78bmaxb1a10u 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/report/GdUnitReport.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/report/GdUnitReport.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/report/GdUnitReport.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cfaj8ju8e246m 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/runners/GdUnitTestCIRunner.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/runners/GdUnitTestCIRunner.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/runners/GdUnitTestCIRunner.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cu1hmt8duoa0j 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/runners/GdUnitTestRunner.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/runners/GdUnitTestRunner.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/runners/GdUnitTestRunner.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bvlfmfgvqdlvr 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/runners/GdUnitTestRunner.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/runners/GdUnitTestRunner.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/runners/GdUnitTestSession.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/runners/GdUnitTestSession.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/runners/GdUnitTestSession.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b226hbcdds6ol 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/runners/GdUnitTestSessionRunner.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/runners/GdUnitTestSessionRunner.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/runners/GdUnitTestSessionRunner.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bgud3b065w5xk 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/templates/test_suite/GdUnitTestSuiteDefaultTemplate.gd.uid: -------------------------------------------------------------------------------- 1 | uid://baybufpxkapuj 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/templates/test_suite/GdUnitTestSuiteTemplate.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/templates/test_suite/GdUnitTestSuiteTemplate.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/templates/test_suite/GdUnitTestSuiteTemplate.gd.uid: -------------------------------------------------------------------------------- 1 | uid://uoqauoy145rq 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/thread/GdUnitThreadContext.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/thread/GdUnitThreadContext.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/thread/GdUnitThreadContext.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bjlnokn0yw1qk 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/thread/GdUnitThreadManager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/thread/GdUnitThreadManager.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/thread/GdUnitThreadManager.gd.uid: -------------------------------------------------------------------------------- 1 | uid://gkgkkauw35f6 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/writers/GdUnitCSIMessageWriter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/writers/GdUnitCSIMessageWriter.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/writers/GdUnitCSIMessageWriter.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bi11ifvk4kpiu 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/writers/GdUnitMessageWriter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/writers/GdUnitMessageWriter.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/writers/GdUnitMessageWriter.gd.uid: -------------------------------------------------------------------------------- 1 | uid://7gshpv8p7axc 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/writers/GdUnitRichTextMessageWriter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/core/writers/GdUnitRichTextMessageWriter.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/core/writers/GdUnitRichTextMessageWriter.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cq5njkjk7o6j0 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/dotnet/GdUnit4CSharpApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/dotnet/GdUnit4CSharpApi.cs -------------------------------------------------------------------------------- /addons/gdUnit4/src/dotnet/GdUnit4CSharpApiLoader.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/dotnet/GdUnit4CSharpApiLoader.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/dotnet/GdUnit4CSharpApiLoader.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bt3wdbynm0djt 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/CallableDoubler.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/doubler/CallableDoubler.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/CallableDoubler.gd.uid: -------------------------------------------------------------------------------- 1 | uid://hueakrkyydfw 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/GdFunctionDoubler.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/doubler/GdFunctionDoubler.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/GdFunctionDoubler.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c43psb036dyjs 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/GdUnitClassDoubler.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/doubler/GdUnitClassDoubler.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/GdUnitClassDoubler.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dw5wdtn3pjyb7 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/GdUnitFunctionDoublerBuilder.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/doubler/GdUnitFunctionDoublerBuilder.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/GdUnitFunctionDoublerBuilder.gd.uid: -------------------------------------------------------------------------------- 1 | uid://hjwlnynmbp8n 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/GdUnitMockFunctionDoubler.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/doubler/GdUnitMockFunctionDoubler.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/GdUnitMockFunctionDoubler.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dxugiqwdcayp0 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/GdUnitObjectInteractions.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/doubler/GdUnitObjectInteractions.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/GdUnitObjectInteractions.gd.uid: -------------------------------------------------------------------------------- 1 | uid://djn7jisfwlcn4 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/GdUnitObjectInteractionsVerifier.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/doubler/GdUnitObjectInteractionsVerifier.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/GdUnitObjectInteractionsVerifier.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cicc4xb1jan3w 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/GdUnitSpyFunctionDoubler.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/doubler/GdUnitSpyFunctionDoubler.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/doubler/GdUnitSpyFunctionDoubler.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cewvka7wc13ir 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/extractors/GdUnitFuncValueExtractor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/extractors/GdUnitFuncValueExtractor.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/extractors/GdUnitFuncValueExtractor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cs4qbmmqagkwq 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/fuzzers/FloatFuzzer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/fuzzers/FloatFuzzer.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/fuzzers/FloatFuzzer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://0jhbcw1c775s 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/fuzzers/Fuzzer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/fuzzers/Fuzzer.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/fuzzers/Fuzzer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://h8yqrfkorcbf 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/fuzzers/IntFuzzer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/fuzzers/IntFuzzer.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/fuzzers/IntFuzzer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://q2byxdj5myw4 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/fuzzers/StringFuzzer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/fuzzers/StringFuzzer.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/fuzzers/StringFuzzer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d2y06qra0pkfw 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/fuzzers/Vector2Fuzzer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/fuzzers/Vector2Fuzzer.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/fuzzers/Vector2Fuzzer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dbqcxolydo4yp 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/fuzzers/Vector3Fuzzer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/fuzzers/Vector3Fuzzer.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/fuzzers/Vector3Fuzzer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bfoo3wqvyi0dx 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/matchers/AnyArgumentMatcher.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/matchers/AnyArgumentMatcher.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/matchers/AnyArgumentMatcher.gd.uid: -------------------------------------------------------------------------------- 1 | uid://uygj574asu08 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/matchers/AnyBuildInTypeArgumentMatcher.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/matchers/AnyBuildInTypeArgumentMatcher.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/matchers/AnyBuildInTypeArgumentMatcher.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bnibcl33dinxu 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/matchers/AnyClazzArgumentMatcher.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/matchers/AnyClazzArgumentMatcher.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/matchers/AnyClazzArgumentMatcher.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c5ajdbvbwgaqc 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/matchers/ChainedArgumentMatcher.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/matchers/ChainedArgumentMatcher.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/matchers/ChainedArgumentMatcher.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b1ibvs7v00e11 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/matchers/EqualsArgumentMatcher.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/matchers/EqualsArgumentMatcher.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/matchers/EqualsArgumentMatcher.gd.uid: -------------------------------------------------------------------------------- 1 | uid://3rv37uckbmsc 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/matchers/GdUnitArgumentMatcher.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/matchers/GdUnitArgumentMatcher.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/matchers/GdUnitArgumentMatcher.gd.uid: -------------------------------------------------------------------------------- 1 | uid://gnrw3gtrr080 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/matchers/GdUnitArgumentMatchers.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/matchers/GdUnitArgumentMatchers.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/matchers/GdUnitArgumentMatchers.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cq56qi8qdeljh 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/mocking/GdUnitMock.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/mocking/GdUnitMock.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/mocking/GdUnitMock.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d203bemd7f27p 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/mocking/GdUnitMockBuilder.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/mocking/GdUnitMockBuilder.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/mocking/GdUnitMockBuilder.gd.uid: -------------------------------------------------------------------------------- 1 | uid://qigtmgr1t6rw 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/mocking/GdUnitMockImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/mocking/GdUnitMockImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/mocking/GdUnitMockImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dvnoeofv8yv31 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/monitor/ErrorLogEntry.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/monitor/ErrorLogEntry.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/monitor/ErrorLogEntry.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b0bhhahs622mb 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/monitor/GdUnitMonitor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/monitor/GdUnitMonitor.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/monitor/GdUnitMonitor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b627xg8ydggdk 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/monitor/GdUnitOrphanNodesMonitor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/monitor/GdUnitOrphanNodesMonitor.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/monitor/GdUnitOrphanNodesMonitor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dn4kdg6d08wou 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/monitor/GodotGdErrorMonitor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/monitor/GodotGdErrorMonitor.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/monitor/GodotGdErrorMonitor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://p5rodklo3mqc 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/GdUnitServer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/network/GdUnitServer.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/GdUnitServer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cwutppvonjx3g 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/GdUnitServer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/network/GdUnitServer.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/GdUnitServerConstants.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/network/GdUnitServerConstants.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/GdUnitServerConstants.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dkw3tyl5u5jq1 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/GdUnitTask.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/network/GdUnitTask.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/GdUnitTask.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d0ky1wr7bfdsv 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/GdUnitTcpClient.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/network/GdUnitTcpClient.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/GdUnitTcpClient.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cuwwf10v6cxiy 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/GdUnitTcpNode.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/network/GdUnitTcpNode.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/GdUnitTcpNode.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dbvfu7eapxtyo 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/GdUnitTcpServer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/network/GdUnitTcpServer.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/GdUnitTcpServer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://4iftaidm3f35 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/rpc/RPC.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/network/rpc/RPC.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/rpc/RPC.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bxnb1dokwjvg 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/rpc/RPCClientConnect.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/network/rpc/RPCClientConnect.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/rpc/RPCClientConnect.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bohkbaqeiln13 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/rpc/RPCClientDisconnect.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/network/rpc/RPCClientDisconnect.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/rpc/RPCClientDisconnect.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dnms5784bc0sf 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/rpc/RPCGdUnitEvent.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/network/rpc/RPCGdUnitEvent.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/rpc/RPCGdUnitEvent.gd.uid: -------------------------------------------------------------------------------- 1 | uid://4ac5xwyloyrp 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/rpc/RPCMessage.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/network/rpc/RPCMessage.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/network/rpc/RPCMessage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ben2x831k6qts 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/GdUnitReportSummary.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/GdUnitReportSummary.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/GdUnitReportSummary.gd.uid: -------------------------------------------------------------------------------- 1 | uid://6wmo4x2hl7lu 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/GdUnitReportWriter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/GdUnitReportWriter.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/GdUnitReportWriter.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bukpyxufjfsky 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/GdUnitTestCaseReport.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/GdUnitTestCaseReport.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/GdUnitTestCaseReport.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cedf2tmgdo2fy 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/GdUnitTestReporter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/GdUnitTestReporter.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/GdUnitTestReporter.gd.uid: -------------------------------------------------------------------------------- 1 | uid://blvl4oan5rgx2 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/GdUnitTestSuiteReport.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/GdUnitTestSuiteReport.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/GdUnitTestSuiteReport.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dean1teklh3rj 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/console/GdUnitConsoleTestReporter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/console/GdUnitConsoleTestReporter.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/console/GdUnitConsoleTestReporter.gd.uid: -------------------------------------------------------------------------------- 1 | uid://denttoej42p6v 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/html/GdUnitByPathReport.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/html/GdUnitByPathReport.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/html/GdUnitByPathReport.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bd3xfghiw30cc 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/html/GdUnitHtmlPatterns.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/html/GdUnitHtmlPatterns.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/html/GdUnitHtmlPatterns.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b30mtk4y1t610 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/html/GdUnitHtmlReportWriter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/html/GdUnitHtmlReportWriter.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/html/GdUnitHtmlReportWriter.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ts50qpft0jbg 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/html/template/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/html/template/css/breadcrumb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/html/template/css/breadcrumb.css -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/html/template/css/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/html/template/css/logo.png -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/html/template/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/html/template/css/styles.css -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/html/template/folder_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/html/template/folder_report.html -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/html/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/html/template/index.html -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/html/template/suite_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/html/template/suite_report.html -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/xml/JUnitXmlReportWriter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/xml/JUnitXmlReportWriter.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/xml/JUnitXmlReportWriter.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dor7pwu8q0an7 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/xml/XmlElement.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/reporters/xml/XmlElement.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/reporters/xml/XmlElement.gd.uid: -------------------------------------------------------------------------------- 1 | uid://7ccqb0s3a11f 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/spy/GdUnitSpyBuilder.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/spy/GdUnitSpyBuilder.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/spy/GdUnitSpyBuilder.gd.uid: -------------------------------------------------------------------------------- 1 | uid://df5ntqpm07nwm 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/spy/GdUnitSpyImpl.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/spy/GdUnitSpyImpl.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/spy/GdUnitSpyImpl.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bhs2fvc0ku478 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/GdUnitConsole.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/GdUnitConsole.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/GdUnitConsole.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b3rlhmmvyunrm 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/GdUnitConsole.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/GdUnitConsole.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/GdUnitFonts.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/GdUnitFonts.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/GdUnitFonts.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cfycyafbg4gxn 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/GdUnitInspector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/GdUnitInspector.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/GdUnitInspector.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bink1t8nta6s4 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/GdUnitInspector.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/GdUnitInspector.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/GdUnitInspectorTreeConstants.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/GdUnitInspectorTreeConstants.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/GdUnitInspectorTreeConstants.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dh4bey50y6oto 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/GdUnitUiTools.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/GdUnitUiTools.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/GdUnitUiTools.gd.uid: -------------------------------------------------------------------------------- 1 | uid://tpvtst0rpmon 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/ScriptEditorControls.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/ScriptEditorControls.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/ScriptEditorControls.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ba6eremy7rmmn 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/menu/EditorFileSystemContextMenuHandler.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/menu/EditorFileSystemContextMenuHandler.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/menu/EditorFileSystemContextMenuHandler.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cjx48nslj16hw 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/menu/EditorFileSystemContextMenuHandlerV44.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/menu/EditorFileSystemContextMenuHandlerV44.gdx -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/menu/GdUnitContextMenuItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/menu/GdUnitContextMenuItem.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/menu/GdUnitContextMenuItem.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dfrqtgjmf3uky 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/menu/ScriptEditorContextMenuHandler.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/menu/ScriptEditorContextMenuHandler.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/menu/ScriptEditorContextMenuHandler.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cvko17ymlv6s3 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/menu/ScriptEditorContextMenuHandlerV44.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/menu/ScriptEditorContextMenuHandlerV44.gdx -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorMonitor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/parts/InspectorMonitor.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorMonitor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d2cam2e8875qp 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorMonitor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/parts/InspectorMonitor.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorProgressBar.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/parts/InspectorProgressBar.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorProgressBar.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c5vgnlpt82584 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorProgressBar.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/parts/InspectorProgressBar.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorStatusBar.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/parts/InspectorStatusBar.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorStatusBar.gd.uid: -------------------------------------------------------------------------------- 1 | uid://m5jpa3i2drid 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorStatusBar.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/parts/InspectorStatusBar.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorToolBar.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/parts/InspectorToolBar.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorToolBar.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ukcummwrkfnc 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorToolBar.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/parts/InspectorToolBar.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorTreeMainPanel.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/parts/InspectorTreeMainPanel.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorTreeMainPanel.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b8t6fs8lm7gqm 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/parts/InspectorTreePanel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/parts/InspectorTreePanel.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/settings/GdUnitInputCapture.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/settings/GdUnitInputCapture.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/settings/GdUnitInputCapture.gd.uid: -------------------------------------------------------------------------------- 1 | uid://co3e73fsrm8c2 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/settings/GdUnitInputCapture.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/settings/GdUnitInputCapture.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/settings/GdUnitSettingsDialog.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/settings/GdUnitSettingsDialog.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/settings/GdUnitSettingsDialog.gd.uid: -------------------------------------------------------------------------------- 1 | uid://vkgpi588vew3 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/settings/GdUnitSettingsDialog.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/settings/GdUnitSettingsDialog.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/settings/GdUnitSettingsTabHooks.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/settings/GdUnitSettingsTabHooks.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/settings/GdUnitSettingsTabHooks.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c3368b7v5jgeo 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/settings/GdUnitSettingsTabHooks.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/settings/GdUnitSettingsTabHooks.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/settings/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/settings/logo.png -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/settings/logo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/settings/logo.png.import -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/templates/TestSuiteTemplate.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/templates/TestSuiteTemplate.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/templates/TestSuiteTemplate.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b46arvmkmkbrg 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/ui/templates/TestSuiteTemplate.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/ui/templates/TestSuiteTemplate.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/GdMarkDownReader.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/GdMarkDownReader.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/GdMarkDownReader.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ba4mkwcrm3olg 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/GdUnitPatch.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/GdUnitPatch.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/GdUnitPatch.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bbsi3sdmd4bn2 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/GdUnitPatcher.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/GdUnitPatcher.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/GdUnitPatcher.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ccffxqpxxxn0r 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/GdUnitUpdate.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/GdUnitUpdate.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/GdUnitUpdate.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c1nr0ni7ydykg 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/GdUnitUpdate.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/GdUnitUpdate.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/GdUnitUpdateClient.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/GdUnitUpdateClient.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/GdUnitUpdateClient.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dsd727gi635oe 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/GdUnitUpdateNotify.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/GdUnitUpdateNotify.gd -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/GdUnitUpdateNotify.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b2x28v83imlod 2 | -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/GdUnitUpdateNotify.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/GdUnitUpdateNotify.tscn -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/assets/border_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/assets/border_bottom.png -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/assets/border_bottom.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/assets/border_bottom.png.import -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/assets/border_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/assets/border_top.png -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/assets/border_top.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/assets/border_top.png.import -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/assets/dot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/assets/dot1.png -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/assets/dot1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/assets/dot1.png.import -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/assets/dot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/assets/dot2.png -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/assets/dot2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/assets/dot2.png.import -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/assets/embedded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/assets/embedded.png -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/assets/embedded.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/assets/embedded.png.import -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/assets/horizontal-line2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/assets/horizontal-line2.png -------------------------------------------------------------------------------- /addons/gdUnit4/src/update/assets/horizontal-line2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gdUnit4/src/update/assets/horizontal-line2.png.import -------------------------------------------------------------------------------- /addons/gecs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/LICENSE -------------------------------------------------------------------------------- /addons/gecs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/README.md -------------------------------------------------------------------------------- /addons/gecs/assets/component.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/component.svg -------------------------------------------------------------------------------- /addons/gecs/assets/component.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/component.svg.import -------------------------------------------------------------------------------- /addons/gecs/assets/entity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/entity.svg -------------------------------------------------------------------------------- /addons/gecs/assets/entity.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/entity.svg.import -------------------------------------------------------------------------------- /addons/gecs/assets/gecs-logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/gecs-logo.psd -------------------------------------------------------------------------------- /addons/gecs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/logo.png -------------------------------------------------------------------------------- /addons/gecs/assets/logo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/logo.png.import -------------------------------------------------------------------------------- /addons/gecs/assets/observer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/observer.svg -------------------------------------------------------------------------------- /addons/gecs/assets/observer.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/observer.svg.import -------------------------------------------------------------------------------- /addons/gecs/assets/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/system.svg -------------------------------------------------------------------------------- /addons/gecs/assets/system.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/system.svg.import -------------------------------------------------------------------------------- /addons/gecs/assets/system_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/system_folder.svg -------------------------------------------------------------------------------- /addons/gecs/assets/system_folder.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/system_folder.svg.import -------------------------------------------------------------------------------- /addons/gecs/assets/world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/world.svg -------------------------------------------------------------------------------- /addons/gecs/assets/world.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/assets/world.svg.import -------------------------------------------------------------------------------- /addons/gecs/debug/gecs_editor_debugger.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/debug/gecs_editor_debugger.gd -------------------------------------------------------------------------------- /addons/gecs/debug/gecs_editor_debugger.gd.uid: -------------------------------------------------------------------------------- 1 | uid://fndnnk201xlo 2 | -------------------------------------------------------------------------------- /addons/gecs/debug/gecs_editor_debugger_messages.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/debug/gecs_editor_debugger_messages.gd -------------------------------------------------------------------------------- /addons/gecs/debug/gecs_editor_debugger_messages.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d08dvfk13egq7 2 | -------------------------------------------------------------------------------- /addons/gecs/debug/gecs_editor_debugger_tab.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/debug/gecs_editor_debugger_tab.gd -------------------------------------------------------------------------------- /addons/gecs/debug/gecs_editor_debugger_tab.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ca7erogu58fca 2 | -------------------------------------------------------------------------------- /addons/gecs/debug/gecs_editor_debugger_tab.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/debug/gecs_editor_debugger_tab.tscn -------------------------------------------------------------------------------- /addons/gecs/docs/BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/docs/BEST_PRACTICES.md -------------------------------------------------------------------------------- /addons/gecs/docs/COMPONENT_QUERIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/docs/COMPONENT_QUERIES.md -------------------------------------------------------------------------------- /addons/gecs/docs/CORE_CONCEPTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/docs/CORE_CONCEPTS.md -------------------------------------------------------------------------------- /addons/gecs/docs/DEBUG_VIEWER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/docs/DEBUG_VIEWER.md -------------------------------------------------------------------------------- /addons/gecs/docs/GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/docs/GETTING_STARTED.md -------------------------------------------------------------------------------- /addons/gecs/docs/OBSERVERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/docs/OBSERVERS.md -------------------------------------------------------------------------------- /addons/gecs/docs/PERFORMANCE_OPTIMIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/docs/PERFORMANCE_OPTIMIZATION.md -------------------------------------------------------------------------------- /addons/gecs/docs/PERFORMANCE_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/docs/PERFORMANCE_TESTING.md -------------------------------------------------------------------------------- /addons/gecs/docs/RELATIONSHIPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/docs/RELATIONSHIPS.md -------------------------------------------------------------------------------- /addons/gecs/docs/SERIALIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/docs/SERIALIZATION.md -------------------------------------------------------------------------------- /addons/gecs/docs/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/docs/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /addons/gecs/ecs/archetype.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/ecs/archetype.gd -------------------------------------------------------------------------------- /addons/gecs/ecs/archetype.gd.uid: -------------------------------------------------------------------------------- 1 | uid://vrhpkju2aq7q 2 | -------------------------------------------------------------------------------- /addons/gecs/ecs/component.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/ecs/component.gd -------------------------------------------------------------------------------- /addons/gecs/ecs/component.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b6k13gc2m4e5s 2 | -------------------------------------------------------------------------------- /addons/gecs/ecs/ecs.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/ecs/ecs.gd -------------------------------------------------------------------------------- /addons/gecs/ecs/ecs.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dfqwl5njvdnmq 2 | -------------------------------------------------------------------------------- /addons/gecs/ecs/entity.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/ecs/entity.gd -------------------------------------------------------------------------------- /addons/gecs/ecs/entity.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cl6glf45pcrns 2 | -------------------------------------------------------------------------------- /addons/gecs/ecs/observer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/ecs/observer.gd -------------------------------------------------------------------------------- /addons/gecs/ecs/observer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dd3umv3f8qyx5 2 | -------------------------------------------------------------------------------- /addons/gecs/ecs/query_builder.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/ecs/query_builder.gd -------------------------------------------------------------------------------- /addons/gecs/ecs/query_builder.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dhyy752meflri 2 | -------------------------------------------------------------------------------- /addons/gecs/ecs/query_cache_key.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/ecs/query_cache_key.gd -------------------------------------------------------------------------------- /addons/gecs/ecs/query_cache_key.gd.uid: -------------------------------------------------------------------------------- 1 | uid://rjjelegj3npr 2 | -------------------------------------------------------------------------------- /addons/gecs/ecs/relationship.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/ecs/relationship.gd -------------------------------------------------------------------------------- /addons/gecs/ecs/relationship.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bsyujqr14xkrv 2 | -------------------------------------------------------------------------------- /addons/gecs/ecs/system.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/ecs/system.gd -------------------------------------------------------------------------------- /addons/gecs/ecs/system.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dyrahdwwpjpri 2 | -------------------------------------------------------------------------------- /addons/gecs/ecs/world.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/ecs/world.gd -------------------------------------------------------------------------------- /addons/gecs/ecs/world.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cdu5tlyk72uu4 2 | -------------------------------------------------------------------------------- /addons/gecs/io/gecs_data.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/io/gecs_data.gd -------------------------------------------------------------------------------- /addons/gecs/io/gecs_data.gd.uid: -------------------------------------------------------------------------------- 1 | uid://pagmg5srhrnd 2 | -------------------------------------------------------------------------------- /addons/gecs/io/gecs_entity_data.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/io/gecs_entity_data.gd -------------------------------------------------------------------------------- /addons/gecs/io/gecs_entity_data.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cphey3uadg1ai 2 | -------------------------------------------------------------------------------- /addons/gecs/io/gecs_relationship_data.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/io/gecs_relationship_data.gd -------------------------------------------------------------------------------- /addons/gecs/io/gecs_relationship_data.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bbqc1v8555562 2 | -------------------------------------------------------------------------------- /addons/gecs/io/io.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/io/io.gd -------------------------------------------------------------------------------- /addons/gecs/io/io.gd.uid: -------------------------------------------------------------------------------- 1 | uid://drhirabcyqlvk 2 | -------------------------------------------------------------------------------- /addons/gecs/io/serialize_config.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/io/serialize_config.gd -------------------------------------------------------------------------------- /addons/gecs/io/serialize_config.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cf84mkp0nv2mk 2 | -------------------------------------------------------------------------------- /addons/gecs/lib/array_extensions.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/lib/array_extensions.gd -------------------------------------------------------------------------------- /addons/gecs/lib/array_extensions.gd.uid: -------------------------------------------------------------------------------- 1 | uid://h7vbvqjotxmf 2 | -------------------------------------------------------------------------------- /addons/gecs/lib/component_query_matcher.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/lib/component_query_matcher.gd -------------------------------------------------------------------------------- /addons/gecs/lib/component_query_matcher.gd.uid: -------------------------------------------------------------------------------- 1 | uid://beqw44pppbpl 2 | -------------------------------------------------------------------------------- /addons/gecs/lib/gecs_settings.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/lib/gecs_settings.gd -------------------------------------------------------------------------------- /addons/gecs/lib/gecs_settings.gd.uid: -------------------------------------------------------------------------------- 1 | uid://buvg6dnpqcnys 2 | -------------------------------------------------------------------------------- /addons/gecs/lib/logger.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/lib/logger.gd -------------------------------------------------------------------------------- /addons/gecs/lib/logger.gd.uid: -------------------------------------------------------------------------------- 1 | uid://betmoqpwcq0wc 2 | -------------------------------------------------------------------------------- /addons/gecs/lib/set.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/lib/set.gd -------------------------------------------------------------------------------- /addons/gecs/lib/set.gd.uid: -------------------------------------------------------------------------------- 1 | uid://oqdcekkxyt52 2 | -------------------------------------------------------------------------------- /addons/gecs/lib/system_group.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/lib/system_group.gd -------------------------------------------------------------------------------- /addons/gecs/lib/system_group.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b3vi2ingux88g 2 | -------------------------------------------------------------------------------- /addons/gecs/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/plugin.cfg -------------------------------------------------------------------------------- /addons/gecs/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/plugin.gd -------------------------------------------------------------------------------- /addons/gecs/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ddl20uqtqukbm 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_complex_serialization_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_complex_serialization_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_complex_serialization_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cpvr163gwyx2d 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_debug_tracking_test_a.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_debug_tracking_test_a.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_debug_tracking_test_a.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d0vhjx22wswv5 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_debug_tracking_test_b.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_debug_tracking_test_b.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_debug_tracking_test_b.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bijx0kal4npp 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_domain_test_a.gd: -------------------------------------------------------------------------------- 1 | class_name C_DomainTestA 2 | extends Component 3 | @export var v_a: int = 1 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_domain_test_a.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cqsmow0liv20e 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_domain_test_b.gd: -------------------------------------------------------------------------------- 1 | class_name C_DomainTestB 2 | extends Component 3 | @export var v_b: int = 2 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_domain_test_b.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bjodoqd54f6pq 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_observer_health.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_observer_health.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_observer_health.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c0o4jh5t35hqw 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_observer_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_observer_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_observer_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cmxcdgnk537l 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_a.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestA 2 | extends Component 3 | @export var value_a: int = 1 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_a.gd.uid: -------------------------------------------------------------------------------- 1 | uid://12rys1s4dqub 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_b.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestB 2 | extends Component 3 | @export var value_b: int = 2 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_b.gd.uid: -------------------------------------------------------------------------------- 1 | uid://brsnu840dpdnw 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_c.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestC 2 | extends Component 3 | @export var value_c: int = 3 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_c.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bkx8tgtgdngvs 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_d.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestD 2 | extends Component 3 | @export var value_d: int = 4 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_d.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cdih4o87okurl 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_e.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestE 2 | extends Component 3 | @export var value_e: int = 5 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_e.gd.uid: -------------------------------------------------------------------------------- 1 | uid://djobbcytnokef 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_f.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestF 2 | extends Component 3 | @export var value_f: int = 6 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_f.gd.uid: -------------------------------------------------------------------------------- 1 | uid://be0tga28sdlof 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_g.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestG 2 | extends Component 3 | @export var value_g: int = 7 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_g.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ctgvxw7pi4wro 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_h.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestH 2 | extends Component 3 | @export var value_h: int = 8 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_h.gd.uid: -------------------------------------------------------------------------------- 1 | uid://hyqseyaigq4o 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_i.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestI 2 | extends Component 3 | @export var value_i: int = 9 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_i.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c25bhc3kbc4e8 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_j.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestJ 2 | extends Component 3 | @export var value_j: int = 10 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_j.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d1igiif6mkikj 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_k.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestK 2 | extends Component 3 | @export var value_k: int = 11 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_k.gd.uid: -------------------------------------------------------------------------------- 1 | uid://jcoxghymmvmh 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_l.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestL 2 | extends Component 3 | @export var value_l: int = 12 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_l.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bce7cd48nf8e7 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_m.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestM 2 | extends Component 3 | @export var value_m: int = 13 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_m.gd.uid: -------------------------------------------------------------------------------- 1 | uid://df0af054av56n 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_n.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestN 2 | extends Component 3 | @export var value_n: int = 14 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_n.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dkbwhig77q1j8 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_o.gd: -------------------------------------------------------------------------------- 1 | class_name C_OrderTestO 2 | extends Component 3 | @export var value_o: int = 15 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_order_test_o.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bgsirllg7wil0 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_perm_a.gd: -------------------------------------------------------------------------------- 1 | class_name C_PermA 2 | extends Component 3 | @export var v: int = 1 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_perm_a.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bi4vscfom0st2 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_perm_b.gd: -------------------------------------------------------------------------------- 1 | class_name C_PermB 2 | extends Component 3 | @export var v: int = 2 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_perm_b.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c1svfcwyi2oie 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_perm_c.gd: -------------------------------------------------------------------------------- 1 | class_name C_PermC 2 | extends Component 3 | @export var v: int = 3 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_perm_c.gd.uid: -------------------------------------------------------------------------------- 1 | uid://0ynnafo2v1it 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_perm_d.gd: -------------------------------------------------------------------------------- 1 | class_name C_PermD 2 | extends Component 3 | @export var v: int = 4 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_perm_d.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cts7f306wa0fa 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_perm_e.gd: -------------------------------------------------------------------------------- 1 | class_name C_PermE 2 | extends Component 3 | @export var v: int = 5 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_perm_e.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c720mkd00xchu 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_perm_f.gd: -------------------------------------------------------------------------------- 1 | class_name C_PermF 2 | extends Component 3 | @export var v: int = 6 4 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_perm_f.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ccws6g7g0j6w8 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_persistent.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_persistent.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_persistent.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bikywcisu1fsu 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_position.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_position.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_position.gd.uid: -------------------------------------------------------------------------------- 1 | uid://33n1ne8tuyja 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_serialization_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_serialization_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_serialization_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://3w2r1fop8e52 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_a.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_test_a.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_a.gd.uid: -------------------------------------------------------------------------------- 1 | uid://5antadqj7v84 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_b.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_test_b.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_b.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c6lvbdptfldrg 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_c.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_test_c.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_c.gd.uid: -------------------------------------------------------------------------------- 1 | uid://3lo6r4xvicxp 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_d.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_test_d.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_d.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cd2ml5rtb3c8g 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_e.gd: -------------------------------------------------------------------------------- 1 | class_name C_TestE 2 | extends Component 3 | 4 | @export var value: int = 0 5 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_e.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cp6siju1aijj2 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_f.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_test_f.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_f.gd.uid: -------------------------------------------------------------------------------- 1 | uid://py2qgdkhiy30 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_g.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_test_g.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_g.gd.uid: -------------------------------------------------------------------------------- 1 | uid://4ud215bve6ap 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_h.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_test_h.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_test_h.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b8ptu8k8rp1sb 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_velocity.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/components/c_velocity.gd -------------------------------------------------------------------------------- /addons/gecs/tests/components/c_velocity.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ckhr8q3glmacs 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_archetype_edge_cache.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_archetype_edge_cache.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_archetype_edge_cache.gd.uid: -------------------------------------------------------------------------------- 1 | uid://hphmrhtswrjq 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_archetype_systems.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_archetype_systems.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_archetype_systems.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cem3jyvifqys 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_complex_relationship_serialization.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_complex_relationship_serialization.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_complex_relationship_serialization.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bdpuk46wqnhuw 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_component.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_component.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_component.gd.uid: -------------------------------------------------------------------------------- 1 | uid://4nqun3t8nb18 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_debug_tracking.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_debug_tracking.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_debug_tracking.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bk45ditcdxhih 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_entity.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_entity.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_entity.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dh1uujht5xew7 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_entity_id_system.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_entity_id_system.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_entity_id_system.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d3n5subrpobw3 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_observers.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_observers.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_observers.gd.uid: -------------------------------------------------------------------------------- 1 | uid://jr1qceldoims 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_query_builder.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_query_builder.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_query_builder.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b06t0s7ajwlme 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_query_cache_key_domains.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_query_cache_key_domains.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_query_cache_key_domains.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dw542afdb7ydt 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_query_domain_permutations.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_query_domain_permutations.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_query_domain_permutations.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bl360eyrl22in 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_query_order_insensitivity.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_query_order_insensitivity.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_query_order_insensitivity.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c8hseirwjt6oi 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_relationship_hash.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_relationship_hash.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_relationship_hash.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bpc0k3us7q6cd 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_relationship_serialization.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_relationship_serialization.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_relationship_serialization.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d1xbolxpx2n81 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_relationships.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_relationships.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_relationships.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ddcusum4gp5im 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_simple_serialization.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_simple_serialization.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_simple_serialization.gd.uid: -------------------------------------------------------------------------------- 1 | uid://2coo3k0qawx 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_subsystem_component_propagation.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_subsystem_component_propagation.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_subsystem_component_propagation.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dbnfyv4w0xa14 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_subsystem_multi_entity_propagation.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_subsystem_multi_entity_propagation.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_subsystem_multi_entity_propagation.gd.uid: -------------------------------------------------------------------------------- 1 | uid://6yo4w3eupvbq 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_subsystem_relationship_bug.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_subsystem_relationship_bug.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_subsystem_relationship_bug.gd.uid: -------------------------------------------------------------------------------- 1 | uid://fo54moeskub 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_subsystems.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_subsystems.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_subsystems.gd.uid: -------------------------------------------------------------------------------- 1 | uid://daxlfiewqgeo5 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_system.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_system.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_system.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c38fxp8uh6w20 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_topological_sort_execution_order.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_topological_sort_execution_order.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_topological_sort_execution_order.gd.uid: -------------------------------------------------------------------------------- 1 | uid://jksjkvw83bmv 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_world.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_world.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_world.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b13q8t5827lf8 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_world_cache_invalidation.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_world_cache_invalidation.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_world_cache_invalidation.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cn47km7u0kbu6 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_world_serialization.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/test_world_serialization.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/test_world_serialization.gd.uid: -------------------------------------------------------------------------------- 1 | uid://duykas5yc8gn3 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/core/tests_array_extensions.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/core/tests_array_extensions.gd -------------------------------------------------------------------------------- /addons/gecs/tests/core/tests_array_extensions.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bydpef6khpc53 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/debug/test_editor_debugger_tab_metrics.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/debug/test_editor_debugger_tab_metrics.gd -------------------------------------------------------------------------------- /addons/gecs/tests/debug/test_editor_debugger_tab_metrics.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bsxfshtmg8tfh 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_complex_serialization_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/entities/e_complex_serialization_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_complex_serialization_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dlq154oe8rmkg 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_gecs_food.gd: -------------------------------------------------------------------------------- 1 | class_name GecsFood 2 | extends Entity 3 | -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_gecs_food.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b58vonkhloaow 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_prefab_test.gd: -------------------------------------------------------------------------------- 1 | class_name PrefabTest 2 | extends Entity 3 | -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_prefab_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dmjuo67pvwh3d 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_prefab_test.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/entities/e_prefab_test.tscn -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_serialization_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/entities/e_serialization_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_serialization_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ccx2x5qv04wys 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_test_a.gd: -------------------------------------------------------------------------------- 1 | class_name TestA 2 | extends Entity 3 | -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_test_a.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ggn111owj1e4 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_test_b.gd: -------------------------------------------------------------------------------- 1 | class_name TestB 2 | extends Entity 3 | -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_test_b.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b8yk2aa5xng8a 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_test_c.gd: -------------------------------------------------------------------------------- 1 | class_name TestC 2 | extends Entity 3 | -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_test_c.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dkd6h4yf03c2t 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_test_d.gd: -------------------------------------------------------------------------------- 1 | class_name TestD 2 | extends Entity 3 | -------------------------------------------------------------------------------- /addons/gecs/tests/entities/e_test_d.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dpdk51tkdnj8r 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/perf_helpers.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/performance/perf_helpers.gd -------------------------------------------------------------------------------- /addons/gecs/tests/performance/perf_helpers.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bw7545nfp8er2 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/performance_regression_detector.gd.uid: -------------------------------------------------------------------------------- 1 | uid://5hhcxik6cv30 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/performance_test_arrays.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cfa7qhlpk01qk 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/performance_test_base.gd.uid: -------------------------------------------------------------------------------- 1 | uid://p46sqv2vhhyj 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/performance_test_components.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bxoj2kyydasxw 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/performance_test_entities.gd.uid: -------------------------------------------------------------------------------- 1 | uid://2l6fp4kfjsc0 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/performance_test_integration.gd.uid: -------------------------------------------------------------------------------- 1 | uid://8l8i83qy6ng7 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/performance_test_queries.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b2d37fkunmia3 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/performance_test_sets.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cxpn28q0c7wr 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/performance_test_system_process.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ik4sfttwvm74 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/performance_test_systems.gd.uid: -------------------------------------------------------------------------------- 1 | uid://x2vtacyhjyp7 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_cache_debug.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/performance/test_cache_debug.gd -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_cache_debug.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bdh450526m2jk 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_cache_key_perf.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/performance/test_cache_key_perf.gd -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_cache_key_perf.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dm6141dihwven 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_component_perf.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/performance/test_component_perf.gd -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_component_perf.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bsuu6ftcww6gy 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_entity_perf.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/performance/test_entity_perf.gd -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_entity_perf.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dytkj0pp6t3sk 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_hotpath_breakdown.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/performance/test_hotpath_breakdown.gd -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_hotpath_breakdown.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cj5f3xbcsymot 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_indexing_perf.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/performance/test_indexing_perf.gd -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_indexing_perf.gd.uid: -------------------------------------------------------------------------------- 1 | uid://5218hr3x4ron 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_observer_perf.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/performance/test_observer_perf.gd -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_observer_perf.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bmhys5pytv1x8 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_query_perf.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/performance/test_query_perf.gd -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_query_perf.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dq82hrc6evh3t 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_set_perf.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/performance/test_set_perf.gd -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_set_perf.gd.uid: -------------------------------------------------------------------------------- 1 | uid://brjw81pwtpsml 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_system_perf.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/performance/test_system_perf.gd -------------------------------------------------------------------------------- /addons/gecs/tests/performance/test_system_perf.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d1md8ied574c0 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/c_test_order_component.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/c_test_order_component.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/c_test_order_component.gd.uid: -------------------------------------------------------------------------------- 1 | uid://botsbhmpawg2q 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/o_health_observer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/o_health_observer.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/o_health_observer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://grwgxjngteim 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/o_observer_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/o_observer_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/o_observer_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cux6842x440ef 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/o_performance_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/o_performance_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/o_performance_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cm7nijht4sro 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/o_relationship_observer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/o_relationship_observer.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/o_relationship_observer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b0cjecwfpdl1u 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/o_test_a.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/o_test_a.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/o_test_a.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dhr3ptijatg7y 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/o_velocity_observer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/o_velocity_observer.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/o_velocity_observer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b2q8xge0b6r37 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/r_s_test_a.gd.uid: -------------------------------------------------------------------------------- 1 | uid://csrumrsjajut4 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_archetype_column_data_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_archetype_column_data_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_archetype_column_data_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ctia33u4i24xw 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_archetype_modify_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_archetype_modify_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_archetype_modify_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cyfyyfy5pe0qx 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_archetype_multiple_archetypes_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_archetype_multiple_archetypes_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_archetype_multiple_archetypes_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://crwuhtu227238 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_archetype_no_iterate.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_archetype_no_iterate.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_archetype_no_iterate.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dsgb6ogulr0ui 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_archetype_order_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_archetype_order_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_archetype_order_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://drq50t10hcpe6 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_archetype_subset_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_archetype_subset_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_archetype_subset_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c3e54vjnv3eqx 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_archetype_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_archetype_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_archetype_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bvrm33mibdifu 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_complex_performance_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_complex_performance_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_complex_performance_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d1g2tv3n6uipx 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_noop.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_noop.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_noop.gd.uid: -------------------------------------------------------------------------------- 1 | uid://by11uhl2ifkc7 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_performance_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_performance_test.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_performance_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cgccpsm0e01fb 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_process_test_a.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_process_test_a.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_process_test_a.gd.uid: -------------------------------------------------------------------------------- 1 | uid://5dt3o04qd5pq 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_process_test_b.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_process_test_b.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_process_test_b.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ba3lvvufdygps 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_a.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_a.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_a.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cwtjamm4iqado 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_b.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_b.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_b.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d0qrblp21kurk 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_c.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_c.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_c.gd.uid: -------------------------------------------------------------------------------- 1 | uid://chohwnsy3i4s0 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_d.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_d.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_d.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cj0qhir58bt6k 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_nonexistent_group.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_nonexistent_group.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_nonexistent_group.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bktsskx8mcole 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_a.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_order_a.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_a.gd.uid: -------------------------------------------------------------------------------- 1 | uid://buariuvsnvjb2 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_b.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_order_b.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_b.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bkenjhqhoausd 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_c.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_order_c.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_c.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cqaxiyxffk4q3 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_d.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_order_d.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_d.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ccy8n3p1rf4fp 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_e.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_order_e.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_e.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cpkgwgw1i378e 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_f.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_order_f.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_f.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dnwk2tuyggk6g 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_g.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_order_g.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_g.gd.uid: -------------------------------------------------------------------------------- 1 | uid://t8yllp42u864 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_h.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_order_h.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_h.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cdpmy2ltl88jr 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_x.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_order_x.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_x.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cuslkawfgeyiq 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_y.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_order_y.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_y.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b844sl3oew2vc 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_z.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_order_z.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_order_z.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cbucoavgh1vky 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_with_group.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_with_group.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_with_group.gd.uid: -------------------------------------------------------------------------------- 1 | uid://balljjtww1lc1 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_with_relationship.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_with_relationship.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_with_relationship.gd.uid: -------------------------------------------------------------------------------- 1 | uid://duoso032fxxt2 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_without_group.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_without_group.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_without_group.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bjm8r3h0frnlr 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_without_relationship.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_test_without_relationship.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_test_without_relationship.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d1u7ie74wc3kn 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_velocity_system.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/systems/s_velocity_system.gd -------------------------------------------------------------------------------- /addons/gecs/tests/systems/s_velocity_system.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c1r6ewwcgy8fq 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/test_component.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bsw2bhs2js1vt 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/test_entity.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cahxu8hd86g 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/test_observers.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b0mh7ox643wtm 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/test_queries.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cn3kv6q24itoj 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/test_query_builder.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c3mqoma4f6fwq 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/test_relationships.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ctgunlbeb57iq 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/test_scene.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/test_scene.gd -------------------------------------------------------------------------------- /addons/gecs/tests/test_scene.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bcfll27sdfcpw 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/test_scene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/gecs/tests/test_scene.tscn -------------------------------------------------------------------------------- /addons/gecs/tests/test_system.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dy7e70dh6jj01 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/test_world.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bystws838yewp 2 | -------------------------------------------------------------------------------- /addons/gecs/tests/tests_array_extensions.gd.uid: -------------------------------------------------------------------------------- 1 | uid://uimudkk37xss 2 | -------------------------------------------------------------------------------- /addons/godot-plugin-refresher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/godot-plugin-refresher/LICENSE -------------------------------------------------------------------------------- /addons/godot-plugin-refresher/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/godot-plugin-refresher/plugin.cfg -------------------------------------------------------------------------------- /addons/godot-plugin-refresher/plugin_refresher.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/godot-plugin-refresher/plugin_refresher.gd -------------------------------------------------------------------------------- /addons/godot-plugin-refresher/plugin_refresher.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bf4gdvb18b3od 2 | -------------------------------------------------------------------------------- /addons/godot-plugin-refresher/plugin_refresher.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/godot-plugin-refresher/plugin_refresher.tscn -------------------------------------------------------------------------------- /addons/godot-plugin-refresher/plugin_refresher_plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/addons/godot-plugin-refresher/plugin_refresher_plugin.gd -------------------------------------------------------------------------------- /addons/godot-plugin-refresher/plugin_refresher_plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dg1pimj67d104 2 | -------------------------------------------------------------------------------- /analyze_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/analyze_perf.py -------------------------------------------------------------------------------- /example/components/c_lifetime.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/example/components/c_lifetime.gd -------------------------------------------------------------------------------- /example/components/c_lifetime.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d0fit03sansqe 2 | -------------------------------------------------------------------------------- /example/components/c_timer.gd: -------------------------------------------------------------------------------- 1 | class_name C_Timer 2 | extends Component 3 | 4 | @export var time: float = 0.0 5 | -------------------------------------------------------------------------------- /example/components/c_timer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bx3pmlknhmilu 2 | -------------------------------------------------------------------------------- /example/components/c_velocity.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/example/components/c_velocity.gd -------------------------------------------------------------------------------- /example/components/c_velocity.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b7r4xkfiy8qi0 2 | -------------------------------------------------------------------------------- /example/entities/random_mover.gd: -------------------------------------------------------------------------------- 1 | @tool 2 | class_name RandomMover 3 | extends Entity 4 | -------------------------------------------------------------------------------- /example/entities/random_mover.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dv6gko4duu5ic 2 | -------------------------------------------------------------------------------- /example/entities/random_mover.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/example/entities/random_mover.tscn -------------------------------------------------------------------------------- /example/lib/entity_visible_on_screen_enabler_3d.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/example/lib/entity_visible_on_screen_enabler_3d.gd -------------------------------------------------------------------------------- /example/lib/entity_visible_on_screen_enabler_3d.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bi0236cfu4osr 2 | -------------------------------------------------------------------------------- /example/lib/entity_visible_on_screen_enabler_3d.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/example/lib/entity_visible_on_screen_enabler_3d.tscn -------------------------------------------------------------------------------- /example/main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/example/main.gd -------------------------------------------------------------------------------- /example/main.gd.uid: -------------------------------------------------------------------------------- 1 | uid://xa80ha1qlcgb 2 | -------------------------------------------------------------------------------- /example/main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/example/main.tscn -------------------------------------------------------------------------------- /example/systems/s_lifetime.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/example/systems/s_lifetime.gd -------------------------------------------------------------------------------- /example/systems/s_lifetime.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dce4khju1rd6j 2 | -------------------------------------------------------------------------------- /example/systems/s_random_spawner.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/example/systems/s_random_spawner.gd -------------------------------------------------------------------------------- /example/systems/s_random_spawner.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dno6kva8er2qx 2 | -------------------------------------------------------------------------------- /example/systems/s_random_velocity.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/example/systems/s_random_velocity.gd -------------------------------------------------------------------------------- /example/systems/s_random_velocity.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cd4ytjyobctm1 2 | -------------------------------------------------------------------------------- /example/systems/s_velocity.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/example/systems/s_velocity.gd -------------------------------------------------------------------------------- /example/systems/s_velocity.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b5xyu2a1nsicl 2 | -------------------------------------------------------------------------------- /export_presets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/export_presets.cfg -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/project.godot -------------------------------------------------------------------------------- /release/web/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/release/web/serve.py -------------------------------------------------------------------------------- /script_templates/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /script_templates/Node/component.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cpmyk1xq8hjia 2 | -------------------------------------------------------------------------------- /script_templates/Node/entity.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/script_templates/Node/entity.gd -------------------------------------------------------------------------------- /script_templates/Node/observer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/script_templates/Node/observer.gd -------------------------------------------------------------------------------- /script_templates/Node/system.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/script_templates/Node/system.gd -------------------------------------------------------------------------------- /script_templates/Resource/component.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/script_templates/Resource/component.gd -------------------------------------------------------------------------------- /tools/grafana/GRAFANA_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/tools/grafana/GRAFANA_SETUP.md -------------------------------------------------------------------------------- /tools/grafana/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/tools/grafana/docker-compose.yml -------------------------------------------------------------------------------- /tools/grafana/load_jsonl_to_influx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/tools/grafana/load_jsonl_to_influx.py -------------------------------------------------------------------------------- /tools/grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/tools/grafana/provisioning/dashboards/dashboard.yml -------------------------------------------------------------------------------- /tools/grafana/provisioning/dashboards/gecs-performance-detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/tools/grafana/provisioning/dashboards/gecs-performance-detailed.json -------------------------------------------------------------------------------- /tools/grafana/provisioning/dashboards/gecs-performance-simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/tools/grafana/provisioning/dashboards/gecs-performance-simple.json -------------------------------------------------------------------------------- /tools/grafana/provisioning/dashboards/gecs-performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/tools/grafana/provisioning/dashboards/gecs-performance.json -------------------------------------------------------------------------------- /tools/grafana/provisioning/datasources/influxdb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/tools/grafana/provisioning/datasources/influxdb.yml -------------------------------------------------------------------------------- /tools/grafana/test_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprance/gecs/HEAD/tools/grafana/test_queries.md --------------------------------------------------------------------------------