├── .editorconfig ├── .gitattributes ├── .gitignore ├── CustomGeneratorTests ├── CustomGeneratorTests.csproj ├── MyClassAttribute.cs ├── MyClassAttributeGenerator.cs ├── MyMethodAttribute.cs └── MyMethodAttributeGenerator.cs ├── Godot 3 Tests ├── .editor │ └── ProjectTemplate.cs ├── .filenesting.json ├── Assets │ └── icon.svg ├── CustomGeneratorTests │ ├── .gdignore │ ├── MyTestClass.cs │ └── MyTestClassWithNoNamespaceAndSameName.cs ├── Godot 3 Tests.csproj ├── Godot 3 Tests.sln ├── ManualTests │ ├── CustomClassSyntaxHighlightingVS │ │ ├── MyCustomClass.cs │ │ ├── MyScene.cs │ │ └── MyScene.tscn │ ├── SceneTreeUsageInExportProperty.cs │ └── SceneTreeUsageInExportProperty.tscn ├── Properties │ ├── .gdignore │ └── launchSettings.json ├── RootScene.cs ├── RootScene.tscn ├── RootSceneWithNoNamespace.cs ├── RootSceneWithNoNamespace.tscn ├── Run.cs ├── Run.tscn ├── TestScenes │ ├── AmbiguousTypeWithImplicitUsings.cs │ ├── AmbiguousTypeWithImplicitUsings.tscn │ ├── CachedNodes.cs │ ├── CachedNodes.tscn │ ├── CustomControls │ │ ├── CustomControl.cs │ │ └── CustomControlWithNoNamespace.cs │ ├── EmptyScene.cs │ ├── EmptyScene.tscn │ ├── EmptySceneWithNoNamespace.cs │ ├── EmptySceneWithNoNamespace.tscn │ ├── Feature26.OnInstantiateTests │ │ ├── OnInstantiateTests.cs │ │ ├── OnInstantiateTests.tscn │ │ ├── Test0Arg.cs │ │ ├── Test0Arg.tscn │ │ ├── Test1Arg.cs │ │ ├── Test1Arg.tscn │ │ ├── Test2Arg.cs │ │ ├── Test2Arg.tscn │ │ ├── Test3Arg.cs │ │ ├── Test3Arg.tscn │ │ ├── TestConstructor_DefaultProtectedScope.cs │ │ ├── TestConstructor_DefaultProtectedScope.tscn │ │ ├── TestConstructor_NoneScope.cs │ │ ├── TestConstructor_NoneScope.tscn │ │ ├── TestConstructor_PrivateScope.cs │ │ ├── TestConstructor_PrivateScope.tscn │ │ ├── TestNamespaceArg.cs │ │ └── TestNamespaceArg.tscn │ ├── Feature29.ImplicitConversion │ │ ├── ImplicitConversionTests.cs │ │ └── ImplicitConversionTests.tscn │ ├── Feature59.InputMapAttribute │ │ ├── InputMapAttributeTests.cs │ │ ├── InputMapAttributeTests.tscn │ │ └── MyInput.cs │ ├── Feature59.LayerNamesAttribute │ │ ├── LayerNamesEnumTest.cs │ │ ├── LayerNamesEnumTest.tscn │ │ ├── LayerNamesIndexTest.cs │ │ ├── LayerNamesIndexTest.tscn │ │ ├── LayerNamesNameTest.cs │ │ ├── LayerNamesNameTest.tscn │ │ └── MyLayers.cs │ ├── Feature87.Notify.PartialProperties │ │ ├── NotifyPartialPropertiesTest.cs │ │ └── NotifyPartialPropertiesTest.tscn │ ├── Feature93.AutoloadExtensions │ │ ├── AutoloadExtensionTests.cs │ │ ├── AutoloadExtensionTests.tscn │ │ ├── AutoloadScene.tscn │ │ ├── AutoloadSceneCS.cs │ │ ├── AutoloadSceneCS.tscn │ │ ├── AutoloadSceneGD.gd │ │ ├── AutoloadSceneGD.tscn │ │ ├── AutoloadScript.cs │ │ ├── AutoloadScript1.gd │ │ ├── AutoloadScript2.gd │ │ ├── AutoloadScript3.gd │ │ ├── InheritedScene.tscn │ │ ├── InheritedSceneCS.cs │ │ ├── InheritedSceneCS.tscn │ │ ├── InheritedSceneGD.gd │ │ ├── InheritedSceneGD.tscn │ │ ├── InheritedScript.cs │ │ ├── InheritedScript1.gd │ │ ├── InheritedScript2.gd │ │ ├── InheritedScript3.gd │ │ ├── RenamedAutoLoad1.tscn │ │ └── RenamedAutoLoad2.tscn │ ├── Feature94.TscnFilePath │ │ ├── TscnFilePathTest.cs │ │ └── TscnFilePathTest.tscn │ ├── GodotNotifyTests.cs │ ├── GodotNotifyTests.tscn │ ├── GodotOverrideInheritanceTest.cs │ ├── GodotOverrideInheritanceTest.tscn │ ├── GodotOverrideTest.cs │ ├── GodotOverrideTest.tscn │ ├── InheritedScene.cs │ ├── InheritedScene.tscn │ ├── InheritedSceneTypeOverride.cs │ ├── InheritedSceneWithBaseChanges1.cs │ ├── InheritedSceneWithBaseChanges1.tscn │ ├── InheritedSceneWithBaseChanges2.cs │ ├── InheritedSceneWithBaseChanges2.tscn │ ├── InheritedSceneWithInstancedScene.cs │ ├── InheritedSceneWithInstancedScene.tscn │ ├── InstancedScene.cs │ ├── InstancedScene.tscn │ ├── InstancedSceneFromDifferentNamespace.cs │ ├── InstancedSceneFromDifferentNamespace.tscn │ ├── InstancingSceneWithSameNameAsNamespace.cs │ ├── InstancingSceneWithSameNameAsNamespace.tscn │ ├── Issue14.SameNameTest │ │ ├── GenericRoot │ │ │ ├── GenericRoot.cs │ │ │ ├── GenericRoot.tscn │ │ │ └── GenericRoot │ │ │ │ ├── GenericRoot.cs │ │ │ │ └── GenericRoot.tscn │ │ ├── GenericRootTest.cs │ │ ├── GenericRootTest.tscn │ │ ├── Namespace.ChildOfParent │ │ │ ├── SameName.cs │ │ │ └── SameName.tscn │ │ ├── Namespace.Global │ │ │ ├── SameName.cs │ │ │ └── SameName.tscn │ │ ├── Namespace.SameAsParent │ │ │ ├── SameName.cs │ │ │ └── SameName.tscn │ │ ├── SameNameTest.cs │ │ └── SameNameTest.tscn │ ├── Issue15.EditableChildren │ │ ├── EditableChildrenTest.cs │ │ ├── EditableChildrenTest.tscn │ │ ├── EditableChildrenWithTraversalTest.cs │ │ ├── EditableChildrenWithTraversalTest.tscn │ │ ├── MyLabel.cs │ │ ├── Scene.cs │ │ ├── Scene.tscn │ │ ├── SceneWithEditableChildren.cs │ │ └── SceneWithEditableChildren.tscn │ ├── Issue17.LoadAsPlaceholder │ │ ├── LoadAsPlaceholderTest.cs │ │ ├── LoadAsPlaceholderTest.tscn │ │ ├── TestScene.cs │ │ └── TestScene.tscn │ ├── Issue34.PathTooLongError │ │ ├── PathTooLongError.cs │ │ └── PathTooLongError.tscn │ ├── Issue43.BuiltInScript │ │ ├── BuiltInScriptTest.cs │ │ └── BuiltInScriptTest.tscn │ ├── Issue44.ExternalGdScript │ │ ├── ExternalGdScriptTest.cs │ │ ├── ExternalGdScriptTest.tscn │ │ └── MyNode.gd │ ├── Issue50.UnsupportedOverrides │ │ ├── Test.glb │ │ ├── TestScript.cs │ │ ├── UnsupportedInheritedOverride.cs │ │ ├── UnsupportedInheritedOverride.tscn │ │ ├── UnsupportedInstancedOverride.cs │ │ └── UnsupportedInstancedOverride.tscn │ ├── Issue55.TypeNameCaseMismatch │ │ ├── TypeNameCaseMismatchTest.cs │ │ └── TypeNameCaseMismatchTest.tscn │ ├── Issue66.DiscardWorkaround │ │ ├── DiscardWorkaroundTest.cs │ │ └── DiscardWorkaroundTest.tscn │ ├── Issue69.SubNodeSceneTree │ │ ├── SubNodeSceneTreeTest.cs │ │ ├── SubNodeSceneTreeTest.tscn │ │ └── SubNodeScript.cs │ ├── Issue70.DisableHiddenInheritedMemberWarning │ │ ├── SceneA.cs │ │ ├── SceneA.tscn │ │ ├── SceneB.cs │ │ └── SceneB.tscn │ ├── Issue72.OnInstantiateWithDefaultParams │ │ ├── OnInstantiateWithDefaultParamsTest.cs │ │ ├── OnInstantiateWithDefaultParamsTest.tscn │ │ ├── Scene1.cs │ │ ├── Scene1.tscn │ │ ├── Scene2.cs │ │ ├── Scene2.tscn │ │ ├── Scene3.cs │ │ └── Scene3.tscn │ ├── SceneForScriptWithDifferentName.tscn │ ├── SceneWithSameName.cs │ ├── SceneWithSameName.tscn │ ├── SceneWithSameNameAsNamespace │ │ ├── SceneWithSameNameAsNamespace.cs │ │ └── SceneWithSameNameAsNamespace.tscn │ ├── ScenesWithoutScripts │ │ ├── InheritingSceneWithoutScript.cs │ │ ├── InheritingSceneWithoutScript.tscn │ │ ├── InstancingSceneWithoutScript.cs │ │ ├── InstancingSceneWithoutScript.tscn │ │ └── SceneWithoutScript.tscn │ ├── ScriptForSceneWithDifferentName.cs │ ├── SeparateSceneNamespace │ │ ├── SceneForScriptWithDifferentPath.tscn │ │ ├── SceneInDifferentNamespace.cs │ │ ├── SceneInDifferentNamespace.tscn │ │ ├── SceneWithSameName.cs │ │ └── SceneWithSameName.tscn │ ├── SeparateScriptNamespace │ │ └── ScriptForSceneWithDifferentPath.cs │ ├── TraverseInstancedScene.cs │ ├── TraverseInstancedScene.tscn │ └── UniqueSceneNameAccess │ │ ├── UniqueSceneNameAccessTest.cs │ │ └── UniqueSceneNameAccessTest.tscn ├── addons │ └── GodotSharp.BuildingBlocks.TestRunner │ │ ├── Callable.Extensions.cs │ │ ├── Callable.cs │ │ ├── ITest.cs │ │ ├── TestRunner.cs │ │ └── TestRunner.tscn ├── nuget.config └── project.godot ├── Godot 4 Tests ├── .editor │ └── ProjectTemplate.cs ├── .filenesting.json ├── Assets │ ├── icon.svg │ └── tr │ │ ├── tr.csv │ │ ├── tr.de.translation │ │ ├── tr.en.translation │ │ ├── tr.fr.translation │ │ └── tr.jp.translation ├── CustomGeneratorTests │ ├── .gdignore │ ├── MyTestClass.cs │ └── MyTestClassWithNoNamespaceAndSameName.cs ├── Godot 4 Tests.csproj ├── Godot 4 Tests.sln ├── ManualTests │ ├── CustomClassSyntaxHighlightingVS │ │ ├── MyCustomClass.cs │ │ ├── MyCustomClass.cs.uid │ │ ├── MyScene.cs │ │ ├── MyScene.cs.uid │ │ └── MyScene.tscn │ ├── SceneTreeUsageInExportProperty.cs │ ├── SceneTreeUsageInExportProperty.cs.uid │ └── SceneTreeUsageInExportProperty.tscn ├── Properties │ ├── .gdignore │ └── launchSettings.json ├── RootScene.cs ├── RootScene.cs.uid ├── RootScene.tscn ├── RootSceneWithNoNamespace.cs ├── RootSceneWithNoNamespace.cs.uid ├── RootSceneWithNoNamespace.tscn ├── Run.cs ├── Run.cs.uid ├── Run.tscn ├── TestScenes │ ├── AmbiguousTypeWithImplicitUsings.cs │ ├── AmbiguousTypeWithImplicitUsings.cs.uid │ ├── AmbiguousTypeWithImplicitUsings.tscn │ ├── CachedNodes.cs │ ├── CachedNodes.cs.uid │ ├── CachedNodes.tscn │ ├── CustomControls │ │ ├── CustomControl.cs │ │ ├── CustomControl.cs.uid │ │ ├── CustomControlWithNoNamespace.cs │ │ └── CustomControlWithNoNamespace.cs.uid │ ├── EmptyScene.cs │ ├── EmptyScene.cs.uid │ ├── EmptyScene.tscn │ ├── EmptySceneWithNoNamespace.cs │ ├── EmptySceneWithNoNamespace.cs.uid │ ├── EmptySceneWithNoNamespace.tscn │ ├── Feature111.AudioBusAttribute │ │ ├── AudioBusAttributeTest.cs │ │ ├── AudioBusAttributeTest.cs.uid │ │ ├── AudioBusAttributeTest.tscn │ │ └── Resources │ │ │ └── custom_bus_layout.tres │ ├── Feature112.AnimationAttribute │ │ ├── AnimLib2.res.depren │ │ ├── AnimationAttributeTest.cs │ │ ├── AnimationAttributeTest.cs.uid │ │ ├── AnimationAttributeTest.tscn │ │ ├── MyAnimLib0.cs │ │ ├── MyAnimLib0.cs.uid │ │ ├── MyAnimLib0.tres │ │ ├── MyAnimLib1.cs │ │ ├── MyAnimLib1.cs.uid │ │ ├── MyAnimLib1.tres │ │ ├── MyAnimLib2.cs │ │ ├── MyAnimLib2.cs.uid │ │ ├── MyAnimLib2.tres │ │ ├── MySharedAnim.cs │ │ ├── MySharedAnim.cs.uid │ │ ├── MySharedAnim.tres │ │ ├── MySpriteFrames.cs │ │ ├── MySpriteFrames.cs.uid │ │ └── MySpriteFrames.tres │ ├── Feature121.ISceneTree │ │ ├── ISceneTreeTest.cs │ │ ├── ISceneTreeTest.cs.uid │ │ ├── ISceneTreeTest.tscn │ │ ├── Scene1.cs │ │ ├── Scene1.cs.uid │ │ ├── Scene1.tscn │ │ ├── Scene2.cs │ │ ├── Scene2.cs.uid │ │ ├── Scene2.tscn │ │ ├── Scene3.cs │ │ ├── Scene3.cs.uid │ │ └── Scene3.tscn │ ├── Feature121.InstantiableAttribute │ │ ├── InstantiableAttributeTests.cs │ │ ├── InstantiableAttributeTests.cs.uid │ │ ├── InstantiableAttributeTests.tscn │ │ ├── TestCustomNoInit.cs │ │ ├── TestCustomNoInit.cs.uid │ │ ├── TestCustomNoInit.tscn │ │ ├── TestCustomWithInit.cs │ │ ├── TestCustomWithInit.cs.uid │ │ ├── TestCustomWithInit.tscn │ │ ├── TestDefaultNoInit.cs │ │ ├── TestDefaultNoInit.cs.uid │ │ ├── TestDefaultNoInit.tscn │ │ ├── TestDefaultWithInit.cs │ │ ├── TestDefaultWithInit.cs.uid │ │ └── TestDefaultWithInit.tscn │ ├── Feature122.TranslationAttributeTests │ │ ├── Resources │ │ │ ├── tr.csv │ │ │ ├── tr.de.translation │ │ │ ├── tr.en.translation │ │ │ ├── tr.fr.translation │ │ │ └── tr.jp.translation │ │ ├── TranslationAttributeTestScene.cs │ │ ├── TranslationAttributeTestScene.cs.uid │ │ ├── TranslationAttributeTestScene.tscn │ │ ├── TranslationAttributeTests.cs │ │ ├── TranslationAttributeTests.cs.uid │ │ └── TranslationAttributeTests.tscn │ ├── Feature124.ShaderAttributeTests │ │ ├── ShaderAttributeTests.cs │ │ ├── ShaderAttributeTests.cs.uid │ │ ├── ShaderAttributeTests.tscn │ │ └── TestShaders │ │ │ ├── EmptyShader.cs │ │ │ ├── EmptyShader.cs.uid │ │ │ ├── EmptyShader.gdshader │ │ │ ├── EmptyShader.gdshader.uid │ │ │ ├── EmptyShaderAsShaderMaterial.cs │ │ │ ├── EmptyShaderAsShaderMaterial.cs.uid │ │ │ ├── EmptyShaderAsShaderMaterial.tres │ │ │ ├── InvalidShader.cs │ │ │ ├── InvalidShader.cs.uid │ │ │ ├── MyShader.cs │ │ │ ├── MyShader.cs.uid │ │ │ ├── MyShader.gdshader │ │ │ ├── MyShader.gdshader.uid │ │ │ ├── MyShaderAsShaderMaterial.cs │ │ │ ├── MyShaderAsShaderMaterial.cs.uid │ │ │ ├── MyShaderAsShaderMaterial.tres │ │ │ ├── MyShaderWithDefaults.cs │ │ │ ├── MyShaderWithDefaults.cs.uid │ │ │ ├── MyShaderWithDefaults.gdshader │ │ │ ├── MyShaderWithDefaults.gdshader.uid │ │ │ ├── MyShaderWithDefaultsAsShaderMaterial.cs │ │ │ ├── MyShaderWithDefaultsAsShaderMaterial.cs.uid │ │ │ └── MyShaderWithDefaultsAsShaderMaterial.tres │ ├── Feature132.RpcExtensions │ │ ├── RpcExtensionTests.cs │ │ ├── RpcExtensionTests.cs.uid │ │ └── RpcExtensionTests.tscn │ ├── Feature143.PauseNotifyEvents │ │ ├── PauseNotifyEventsTests.cs │ │ ├── PauseNotifyEventsTests.cs.uid │ │ └── PauseNotifyEventsTests.tscn │ ├── Feature148.ResourceTree │ │ ├── ResourceTreeTests.cs │ │ ├── ResourceTreeTests.cs.uid │ │ ├── ResourceTreeTests.tscn │ │ ├── Resources │ │ │ ├── .ignored │ │ │ │ └── MyRes.txt │ │ │ ├── MyCsShader.cs │ │ │ ├── MyCsShader.cs.uid │ │ │ ├── MyCsShader.tres │ │ │ ├── MyGdShader.gd │ │ │ ├── MyGdShader.gd.uid │ │ │ ├── MyGdShader.tres │ │ │ ├── MyNoShader.tres │ │ │ ├── addons │ │ │ │ └── MyRes.txt │ │ │ ├── ignored │ │ │ │ ├── .gdignore │ │ │ │ └── MyRes.txt │ │ │ └── xtras │ │ │ │ ├── 3DModel.txt │ │ │ │ ├── Model3D.txt │ │ │ │ ├── MyRes.cfg │ │ │ │ └── MyRes.csv │ │ └── SpriteFrames │ │ │ └── new_sprite_frames.tres │ ├── Feature150.AutoEnum │ │ ├── AutoEnumTests.cs │ │ ├── AutoEnumTests.cs.uid │ │ └── AutoEnumTests.tscn │ ├── Feature152.UniqueNodeScope │ │ ├── CustomScope.cs │ │ ├── CustomScope.cs.uid │ │ ├── CustomScope.tscn │ │ ├── DefaultScope.cs │ │ ├── DefaultScope.cs.uid │ │ ├── DefaultScope.tscn │ │ ├── InvalidScope.cs │ │ ├── InvalidScope.cs.uid │ │ ├── InvalidScope.tscn │ │ ├── UniqueNodeScopeTest.cs │ │ ├── UniqueNodeScopeTest.cs.uid │ │ └── UniqueNodeScopeTest.tscn │ ├── Feature26.OnInstantiateTests │ │ ├── OnInstantiateTests.cs │ │ ├── OnInstantiateTests.cs.uid │ │ ├── OnInstantiateTests.tscn │ │ ├── Test0Arg.cs │ │ ├── Test0Arg.cs.uid │ │ ├── Test0Arg.tscn │ │ ├── Test1Arg.cs │ │ ├── Test1Arg.cs.uid │ │ ├── Test1Arg.tscn │ │ ├── Test2Arg.cs │ │ ├── Test2Arg.cs.uid │ │ ├── Test2Arg.tscn │ │ ├── Test3Arg.cs │ │ ├── Test3Arg.cs.uid │ │ ├── Test3Arg.tscn │ │ ├── TestConstructor_DefaultProtectedScope.cs │ │ ├── TestConstructor_DefaultProtectedScope.cs.uid │ │ ├── TestConstructor_DefaultProtectedScope.tscn │ │ ├── TestConstructor_EmptyScope.cs.uid │ │ ├── TestConstructor_NoneScope.cs │ │ ├── TestConstructor_NoneScope.cs.uid │ │ ├── TestConstructor_NoneScope.tscn │ │ ├── TestConstructor_NullScope.cs.uid │ │ ├── TestConstructor_PrivateScope.cs │ │ ├── TestConstructor_PrivateScope.cs.uid │ │ ├── TestConstructor_PrivateScope.tscn │ │ ├── TestNamespaceArg.cs │ │ ├── TestNamespaceArg.cs.uid │ │ └── TestNamespaceArg.tscn │ ├── Feature29.ImplicitConversion │ │ ├── ImplicitConversionTests.cs │ │ ├── ImplicitConversionTests.cs.uid │ │ └── ImplicitConversionTests.tscn │ ├── Feature31.OnImportAttribute │ │ ├── OnImportTests.cs │ │ ├── OnImportTests.cs.uid │ │ └── OnImportTests.tscn │ ├── Feature59.InputMapAttribute │ │ ├── InputMapAttributeTests.cs │ │ ├── InputMapAttributeTests.cs.uid │ │ ├── InputMapAttributeTests.tscn │ │ ├── MyInput.cs │ │ └── MyInput.cs.uid │ ├── Feature59.LayerNamesAttribute │ │ ├── LayerNamesEnumTest.cs │ │ ├── LayerNamesEnumTest.cs.uid │ │ ├── LayerNamesEnumTest.tscn │ │ ├── LayerNamesIndexTest.cs │ │ ├── LayerNamesIndexTest.cs.uid │ │ ├── LayerNamesIndexTest.tscn │ │ ├── LayerNamesNameTest.cs │ │ ├── LayerNamesNameTest.cs.uid │ │ ├── LayerNamesNameTest.tscn │ │ ├── MyLayers.cs │ │ └── MyLayers.cs.uid │ ├── Feature87.Notify.PartialProperties │ │ ├── NotifyPartialPropertiesTest.cs │ │ ├── NotifyPartialPropertiesTest.cs.uid │ │ └── NotifyPartialPropertiesTest.tscn │ ├── Feature92.GlobalGroupsAttribute │ │ ├── GlobalGroupsAttributeTests.cs │ │ ├── GlobalGroupsAttributeTests.cs.uid │ │ └── GlobalGroupsAttributeTests.tscn │ ├── Feature93.AutoloadExtensions │ │ ├── AutoloadExtensionTests.cs │ │ ├── AutoloadExtensionTests.cs.uid │ │ ├── AutoloadExtensionTests.tscn │ │ ├── AutoloadRenameTest.cs.uid │ │ ├── AutoloadScene.tscn │ │ ├── AutoloadSceneCS.cs │ │ ├── AutoloadSceneCS.cs.uid │ │ ├── AutoloadSceneCS.tscn │ │ ├── AutoloadSceneGD.gd │ │ ├── AutoloadSceneGD.gd.uid │ │ ├── AutoloadSceneGD.tscn │ │ ├── AutoloadScript.cs │ │ ├── AutoloadScript.cs.uid │ │ ├── AutoloadScript1.gd │ │ ├── AutoloadScript1.gd.uid │ │ ├── AutoloadScript2.gd │ │ ├── AutoloadScript2.gd.uid │ │ ├── AutoloadScript3.gd │ │ ├── AutoloadScript3.gd.uid │ │ ├── InheritedScene.tscn │ │ ├── InheritedSceneCS.cs │ │ ├── InheritedSceneCS.cs.uid │ │ ├── InheritedSceneCS.tscn │ │ ├── InheritedSceneGD.gd │ │ ├── InheritedSceneGD.gd.uid │ │ ├── InheritedSceneGD.tscn │ │ ├── InheritedScript.cs │ │ ├── InheritedScript.cs.uid │ │ ├── InheritedScript1.gd │ │ ├── InheritedScript1.gd.uid │ │ ├── InheritedScript2.gd │ │ ├── InheritedScript2.gd.uid │ │ ├── InheritedScript3.gd │ │ ├── InheritedScript3.gd.uid │ │ ├── RenamedAutoLoad1.tscn │ │ └── RenamedAutoLoad2.tscn │ ├── Feature94.TscnFilePath │ │ ├── TscnFilePathTest.cs │ │ ├── TscnFilePathTest.cs.uid │ │ └── TscnFilePathTest.tscn │ ├── Feature99.SingletonAttribute │ │ ├── SingletonAttributeTests.cs │ │ ├── SingletonAttributeTests.cs.uid │ │ ├── SingletonAttributeTests.tscn │ │ ├── SoloData.cs │ │ ├── SoloData.cs.uid │ │ ├── SoloNode.cs │ │ ├── SoloNode.cs.uid │ │ ├── SoloScene.cs │ │ ├── SoloScene.cs.uid │ │ └── SoloScene.tscn │ ├── GodotNotifyTests.cs │ ├── GodotNotifyTests.cs.uid │ ├── GodotNotifyTests.tscn │ ├── GodotOverrideInheritanceTest.cs │ ├── GodotOverrideInheritanceTest.cs.uid │ ├── GodotOverrideInheritanceTest.tscn │ ├── GodotOverrideTest.cs │ ├── GodotOverrideTest.cs.uid │ ├── GodotOverrideTest.tscn │ ├── InheritedScene.cs │ ├── InheritedScene.cs.uid │ ├── InheritedScene.tscn │ ├── InheritedSceneTypeOverride.cs │ ├── InheritedSceneTypeOverride.cs.uid │ ├── InheritedSceneWithBaseChanges1.cs │ ├── InheritedSceneWithBaseChanges1.cs.uid │ ├── InheritedSceneWithBaseChanges1.tscn │ ├── InheritedSceneWithBaseChanges2.cs │ ├── InheritedSceneWithBaseChanges2.cs.uid │ ├── InheritedSceneWithBaseChanges2.tscn │ ├── InheritedSceneWithInstancedScene.cs │ ├── InheritedSceneWithInstancedScene.cs.uid │ ├── InheritedSceneWithInstancedScene.tscn │ ├── InstancedScene.cs │ ├── InstancedScene.cs.uid │ ├── InstancedScene.tscn │ ├── InstancedSceneFromDifferentNamespace.cs │ ├── InstancedSceneFromDifferentNamespace.cs.uid │ ├── InstancedSceneFromDifferentNamespace.tscn │ ├── InstancingSceneWithSameNameAsNamespace.cs │ ├── InstancingSceneWithSameNameAsNamespace.cs.uid │ ├── InstancingSceneWithSameNameAsNamespace.tscn │ ├── Issue14.SameNameTest │ │ ├── GenericRoot │ │ │ ├── GenericRoot.cs │ │ │ ├── GenericRoot.cs.uid │ │ │ ├── GenericRoot.tscn │ │ │ └── GenericRoot │ │ │ │ ├── GenericRoot.cs │ │ │ │ ├── GenericRoot.cs.uid │ │ │ │ └── GenericRoot.tscn │ │ ├── GenericRootTest.cs │ │ ├── GenericRootTest.cs.uid │ │ ├── GenericRootTest.tscn │ │ ├── Namespace.ChildOfParent │ │ │ ├── SameName.cs │ │ │ ├── SameName.cs.uid │ │ │ └── SameName.tscn │ │ ├── Namespace.Global │ │ │ ├── SameName.cs │ │ │ ├── SameName.cs.uid │ │ │ └── SameName.tscn │ │ ├── Namespace.SameAsParent │ │ │ ├── SameName.cs │ │ │ ├── SameName.cs.uid │ │ │ └── SameName.tscn │ │ ├── SameNameTest.cs │ │ ├── SameNameTest.cs.uid │ │ └── SameNameTest.tscn │ ├── Issue15.EditableChildren │ │ ├── EditableChildrenTest.cs │ │ ├── EditableChildrenTest.cs.uid │ │ ├── EditableChildrenTest.tscn │ │ ├── EditableChildrenWithTraversalTest.cs │ │ ├── EditableChildrenWithTraversalTest.cs.uid │ │ ├── EditableChildrenWithTraversalTest.tscn │ │ ├── MyLabel.cs │ │ ├── MyLabel.cs.uid │ │ ├── Scene.cs │ │ ├── Scene.cs.uid │ │ ├── Scene.tscn │ │ ├── SceneWithEditableChildren.cs │ │ ├── SceneWithEditableChildren.cs.uid │ │ └── SceneWithEditableChildren.tscn │ ├── Issue160.OnInstantiateWithMultipleMethods │ │ ├── OnInstantiateWithMultipleMethodsTest.cs │ │ ├── OnInstantiateWithMultipleMethodsTest.cs.uid │ │ ├── OnInstantiateWithMultipleMethodsTest.tscn │ │ ├── SUT1.cs │ │ ├── SUT1.cs.uid │ │ ├── SUT1.tscn │ │ ├── SUT2.cs │ │ ├── SUT2.cs.uid │ │ └── SUT2.tscn │ ├── Issue17.LoadAsPlaceholder │ │ ├── LoadAsPlaceholderTest.cs │ │ ├── LoadAsPlaceholderTest.cs.uid │ │ ├── LoadAsPlaceholderTest.tscn │ │ ├── TestScene.cs │ │ ├── TestScene.cs.uid │ │ └── TestScene.tscn │ ├── Issue34.PathTooLongError │ │ ├── PathTooLongError.cs │ │ ├── PathTooLongError.cs.uid │ │ └── PathTooLongError.tscn │ ├── Issue43.BuiltInScript │ │ ├── BuiltInScriptTest.cs │ │ ├── BuiltInScriptTest.cs.uid │ │ └── BuiltInScriptTest.tscn │ ├── Issue44.ExternalGdScript │ │ ├── ExternalGdScriptTest.cs │ │ ├── ExternalGdScriptTest.cs.uid │ │ ├── ExternalGdScriptTest.tscn │ │ ├── MyNode.gd │ │ └── MyNode.gd.uid │ ├── Issue50.UnsupportedOverrides │ │ ├── Test.glb │ │ ├── TestScript.cs │ │ ├── TestScript.cs.uid │ │ ├── UnsupportedInheritedOverride.cs │ │ ├── UnsupportedInheritedOverride.cs.uid │ │ ├── UnsupportedInheritedOverride.tscn │ │ ├── UnsupportedInstancedOverride.cs │ │ ├── UnsupportedInstancedOverride.cs.uid │ │ └── UnsupportedInstancedOverride.tscn │ ├── Issue55.TypeNameCaseMismatch │ │ ├── TypeNameCaseMismatchTest.cs │ │ ├── TypeNameCaseMismatchTest.cs.uid │ │ └── TypeNameCaseMismatchTest.tscn │ ├── Issue66.DiscardWorkaround │ │ ├── DiscardWorkaroundTest.cs │ │ ├── DiscardWorkaroundTest.cs.uid │ │ └── DiscardWorkaroundTest.tscn │ ├── Issue69.SubNodeSceneTree │ │ ├── SubNodeSceneTreeTest.cs │ │ ├── SubNodeSceneTreeTest.cs.uid │ │ ├── SubNodeSceneTreeTest.tscn │ │ ├── SubNodeScript.cs │ │ └── SubNodeScript.cs.uid │ ├── Issue70.DisableHiddenInheritedMemberWarning │ │ ├── SceneA.cs │ │ ├── SceneA.cs.uid │ │ ├── SceneA.tscn │ │ ├── SceneB.cs │ │ ├── SceneB.cs.uid │ │ └── SceneB.tscn │ ├── Issue72.OnInstantiateWithDefaultParams │ │ ├── OnInstantiateWithDefaultParamsTest.cs │ │ ├── OnInstantiateWithDefaultParamsTest.cs.uid │ │ ├── OnInstantiateWithDefaultParamsTest.tscn │ │ ├── Scene1.cs │ │ ├── Scene1.cs.uid │ │ ├── Scene1.tscn │ │ ├── Scene2.cs │ │ ├── Scene2.cs.uid │ │ ├── Scene2.tscn │ │ ├── Scene3.cs │ │ ├── Scene3.cs.uid │ │ └── Scene3.tscn │ ├── SceneForScriptWithDifferentName.tscn │ ├── SceneWithSameName.cs │ ├── SceneWithSameName.cs.uid │ ├── SceneWithSameName.tscn │ ├── SceneWithSameNameAsNamespace │ │ ├── SceneWithSameNameAsNamespace.cs │ │ ├── SceneWithSameNameAsNamespace.cs.uid │ │ └── SceneWithSameNameAsNamespace.tscn │ ├── ScenesWithoutScripts │ │ ├── InheritingSceneWithoutScript.cs │ │ ├── InheritingSceneWithoutScript.cs.uid │ │ ├── InheritingSceneWithoutScript.tscn │ │ ├── InstancingSceneWithoutScript.cs │ │ ├── InstancingSceneWithoutScript.cs.uid │ │ ├── InstancingSceneWithoutScript.tscn │ │ └── SceneWithoutScript.tscn │ ├── ScriptForSceneWithDifferentName.cs │ ├── ScriptForSceneWithDifferentName.cs.uid │ ├── SeparateSceneNamespace │ │ ├── SceneForScriptWithDifferentPath.tscn │ │ ├── SceneInDifferentNamespace.cs │ │ ├── SceneInDifferentNamespace.cs.uid │ │ ├── SceneInDifferentNamespace.tscn │ │ ├── SceneWithSameName.cs │ │ ├── SceneWithSameName.cs.uid │ │ └── SceneWithSameName.tscn │ ├── SeparateScriptNamespace │ │ ├── ScriptForSceneWithDifferentPath.cs │ │ └── ScriptForSceneWithDifferentPath.cs.uid │ ├── TraverseInstancedScene.cs │ ├── TraverseInstancedScene.cs.uid │ ├── TraverseInstancedScene.tscn │ └── UniqueSceneNameAccess │ │ ├── UniqueSceneNameAccessTest.cs │ │ ├── UniqueSceneNameAccessTest.cs.uid │ │ └── UniqueSceneNameAccessTest.tscn ├── Utils │ └── Extensions │ │ ├── ReflectionExtensions.cs │ │ └── ReflectionExtensions.cs.uid ├── addons │ ├── GodotSharp.BuildingBlocks.TestRunner │ │ ├── ITest.cs │ │ ├── ITest.cs.uid │ │ ├── TestRunner.cs │ │ ├── TestRunner.cs.uid │ │ └── TestRunner.tscn │ └── GodotSharp.SourceGenerator.PluginTests │ │ ├── EmptyFile.zip │ │ ├── Plugin.cs │ │ ├── Plugin.cs.uid │ │ └── plugin.cfg ├── default_bus_layout.tres ├── nuget.config └── project.godot ├── GodotSharp.SourceGenerators.log.lnk ├── GodotSharp.sln ├── LICENSE ├── NRT.Tests ├── GD3.NRT │ ├── .filenesting.json │ ├── GD3.NRT.csproj │ ├── GD3.NRT.sln │ ├── Main.cs │ ├── Main.tscn │ ├── Properties │ │ ├── .gdignore │ │ └── launchSettings.json │ ├── TestWithNonNullableNRT.cs │ ├── TestWithNonNullableNRT.tscn │ ├── TestWithNullableNRT.cs │ ├── TestWithNullableNRT.tscn │ ├── nuget.config │ └── project.godot └── GD4.NRT │ ├── .filenesting.json │ ├── GD4.NRT.csproj │ ├── GD4.NRT.sln │ ├── Main.cs │ ├── Main.cs.uid │ ├── Main.tscn │ ├── Properties │ ├── .gdignore │ └── launchSettings.json │ ├── TestWithNonNullableNRT.cs │ ├── TestWithNonNullableNRT.cs.uid │ ├── TestWithNonNullableNRT.tscn │ ├── TestWithNullableNRT.cs │ ├── TestWithNullableNRT.cs.uid │ ├── TestWithNullableNRT.tscn │ ├── nuget.config │ └── project.godot ├── README.md ├── SourceGenerators ├── AnimNamesExtensions │ ├── AnimNamesAttribute.cs │ ├── AnimNamesDataModel.cs │ ├── AnimNamesScraper.cs │ ├── AnimNamesSourceGenerator.cs │ ├── AnimNamesTemplate.scriban │ └── Resources.cs ├── AudioBusExtensions │ ├── AudioBusAttribute.cs │ ├── AudioBusDataModel.cs │ ├── AudioBusScraper.cs │ ├── AudioBusSourceGenerator.cs │ ├── AudioBusTemplate.scriban │ └── Resources.cs ├── AutoEnumExtensions │ ├── AutoEnumAttribute.cs │ ├── AutoEnumClassDataModel.cs │ ├── AutoEnumClassSourceGenerator.cs │ ├── AutoEnumClassTemplate.scriban │ ├── AutoEnumDataModel.cs │ ├── AutoEnumSourceGenerator.cs │ ├── AutoEnumTemplate.scriban │ └── Resources.cs ├── AutoloadExtensions │ ├── AutoloadAttribute.cs │ ├── AutoloadDataModel.cs │ ├── AutoloadScraper.cs │ ├── AutoloadSourceGenerator.cs │ ├── AutoloadTemplate.scriban │ └── Resources.cs ├── CodeCommentsExtensions │ ├── CodeCommentsAttribute.cs │ ├── CodeCommentsDataModel.cs │ ├── CodeCommentsSourceGenerator.cs │ ├── CodeCommentsTemplate.scriban │ ├── ICodeComments.cs │ └── Resources.cs ├── DiagnosticDetail.cs ├── GlobalGroupsExtensions │ ├── GlobalGroupsAttribute.cs │ ├── GlobalGroupsDataModel.cs │ ├── GlobalGroupsScraper.cs │ ├── GlobalGroupsSourceGenerator.cs │ ├── GlobalGroupsTemplate.scriban │ └── Resources.cs ├── GlobalSuppressions.cs ├── GodotNotifyExtensions │ ├── GodotNotifyAttribute.cs │ ├── GodotNotifyDataModel.cs │ ├── GodotNotifySourceGenerator.cs │ ├── GodotNotifyTemplate.scriban │ └── Resources.cs ├── GodotOverrideExtensions │ ├── GodotOverrideAttribute.cs │ ├── GodotOverrideDataModel.cs │ ├── GodotOverrideSourceGenerator.cs │ ├── GodotOverrideTemplate.scriban │ └── Resources.cs ├── InputMapExtensions │ ├── InputMapAttribute.cs │ ├── InputMapDataModel.cs │ ├── InputMapScraper.cs │ ├── InputMapSourceGenerator.cs │ ├── InputMapTemplate.scriban │ └── Resources.cs ├── InstantiableExtensions │ ├── InstantiableAttribute.cs │ ├── InstantiableDataModel.cs │ ├── InstantiableSourceGenerator.cs │ ├── InstantiableTemplate.scriban │ └── Resources.cs ├── LayerNamesExtensions │ ├── LayerNamesAttribute.cs │ ├── LayerNamesDataModel.cs │ ├── LayerNamesScraper.cs │ ├── LayerNamesSourceGenerator.cs │ ├── LayerNamesTemplate.scriban │ └── Resources.cs ├── OnImportExtensions │ ├── OnImportAttribute.cs │ ├── OnImportDataModel.cs │ ├── OnImportSourceGenerator.cs │ ├── OnImportTemplate.scriban │ └── Resources.cs ├── OnInstantiateExtensions │ ├── OnInstantiateAttribute.cs │ ├── OnInstantiateDataModel.cs │ ├── OnInstantiateSourceGenerator.cs │ ├── OnInstantiateTemplate.scriban │ └── Resources.cs ├── ResourceTreeExtensions │ ├── ResourceTreeAttribute.cs │ ├── ResourceTreeConfig.cs │ ├── ResourceTreeDataModel.cs │ ├── ResourceTreeNodes.cs │ ├── ResourceTreeScraper.cs │ ├── ResourceTreeSourceGenerator.cs │ ├── ResourceTreeTemplate.scriban │ └── Resources.cs ├── RpcExtensions │ ├── Resources.cs │ ├── RpcDataModel.cs │ ├── RpcSourceGenerator.cs │ └── RpcTemplate.scriban ├── SceneTreeExtensions │ ├── Resources.cs │ ├── SceneTreeAttribute.cs │ ├── SceneTreeDataModel.cs │ ├── SceneTreeNode.cs │ ├── SceneTreeScraper.cs │ ├── SceneTreeSourceGenerator.cs │ └── SceneTreeTemplate.scriban ├── ShaderExtensions │ ├── Resources.cs │ ├── ShaderAttribute.cs │ ├── ShaderDataModel.cs │ ├── ShaderScraper.cs │ ├── ShaderSourceGenerator.cs │ └── ShaderTemplate.scriban ├── Shared │ ├── Scope.cs │ ├── Shared.cs │ ├── Tools │ │ ├── MiniCsScraper.cs │ │ ├── MiniImportScraper.cs │ │ ├── MiniTresScraper.cs │ │ └── MiniUidScraper.cs │ └── Utils.scriban ├── SingletonExtensions │ ├── Resources.cs │ ├── SingletonAttribute.cs │ ├── SingletonDataModel.cs │ ├── SingletonSourceGenerator.cs │ └── SingletonTemplate.scriban ├── SourceGeneratorForDeclaredEnumWithAttribute.cs ├── SourceGeneratorForDeclaredFieldWithAttribute.cs ├── SourceGeneratorForDeclaredMemberWithAttribute.cs ├── SourceGeneratorForDeclaredMethodWithAttribute.cs ├── SourceGeneratorForDeclaredPropertyWithAttribute.cs ├── SourceGeneratorForDeclaredTypeWithAttribute.cs ├── SourceGenerators.csproj ├── SourceGenerators.sln ├── TranslationExtensions │ ├── CSVScraper.cs │ ├── Resources.cs │ ├── TranslationAttribute.cs │ ├── TranslationDataModel.cs │ ├── TranslationSourceGenerator.cs │ └── TranslationTemplate.scriban └── Utilities │ ├── DataModel │ ├── BaseDataModel.cs │ ├── ClassDataModel.cs │ └── MemberDataModel.cs │ ├── Diagnostics │ └── Diagnostics.cs │ ├── Extensions │ ├── AssemblyExtensions.cs │ ├── CompilationExtensions.cs │ ├── EnumExtensions.cs │ ├── GeneratorExtensions.cs │ ├── GodotExtensions.cs │ ├── LinqExtensions.cs │ ├── ParamExtensions.cs │ ├── RegexExtensions.cs │ ├── ScribanExtensions.cs │ ├── StringExtensions.cs │ ├── SymbolExtensions.cs │ ├── SyntaxExtensions.cs │ └── TypeExtensions.cs │ ├── Log.cs │ ├── Tree.cs │ └── TreeNode.cs └── nuget.config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/.gitignore -------------------------------------------------------------------------------- /CustomGeneratorTests/CustomGeneratorTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/CustomGeneratorTests/CustomGeneratorTests.csproj -------------------------------------------------------------------------------- /CustomGeneratorTests/MyClassAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/CustomGeneratorTests/MyClassAttribute.cs -------------------------------------------------------------------------------- /CustomGeneratorTests/MyClassAttributeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/CustomGeneratorTests/MyClassAttributeGenerator.cs -------------------------------------------------------------------------------- /CustomGeneratorTests/MyMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/CustomGeneratorTests/MyMethodAttribute.cs -------------------------------------------------------------------------------- /CustomGeneratorTests/MyMethodAttributeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/CustomGeneratorTests/MyMethodAttributeGenerator.cs -------------------------------------------------------------------------------- /Godot 3 Tests/.editor/ProjectTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/.editor/ProjectTemplate.cs -------------------------------------------------------------------------------- /Godot 3 Tests/.filenesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/.filenesting.json -------------------------------------------------------------------------------- /Godot 3 Tests/Assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/Assets/icon.svg -------------------------------------------------------------------------------- /Godot 3 Tests/CustomGeneratorTests/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Godot 3 Tests/CustomGeneratorTests/MyTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/CustomGeneratorTests/MyTestClass.cs -------------------------------------------------------------------------------- /Godot 3 Tests/CustomGeneratorTests/MyTestClassWithNoNamespaceAndSameName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/CustomGeneratorTests/MyTestClassWithNoNamespaceAndSameName.cs -------------------------------------------------------------------------------- /Godot 3 Tests/Godot 3 Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/Godot 3 Tests.csproj -------------------------------------------------------------------------------- /Godot 3 Tests/Godot 3 Tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/Godot 3 Tests.sln -------------------------------------------------------------------------------- /Godot 3 Tests/ManualTests/CustomClassSyntaxHighlightingVS/MyCustomClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/ManualTests/CustomClassSyntaxHighlightingVS/MyCustomClass.cs -------------------------------------------------------------------------------- /Godot 3 Tests/ManualTests/CustomClassSyntaxHighlightingVS/MyScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/ManualTests/CustomClassSyntaxHighlightingVS/MyScene.cs -------------------------------------------------------------------------------- /Godot 3 Tests/ManualTests/CustomClassSyntaxHighlightingVS/MyScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/ManualTests/CustomClassSyntaxHighlightingVS/MyScene.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/ManualTests/SceneTreeUsageInExportProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/ManualTests/SceneTreeUsageInExportProperty.cs -------------------------------------------------------------------------------- /Godot 3 Tests/ManualTests/SceneTreeUsageInExportProperty.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/ManualTests/SceneTreeUsageInExportProperty.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/Properties/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Godot 3 Tests/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/Properties/launchSettings.json -------------------------------------------------------------------------------- /Godot 3 Tests/RootScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/RootScene.cs -------------------------------------------------------------------------------- /Godot 3 Tests/RootScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/RootScene.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/RootSceneWithNoNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/RootSceneWithNoNamespace.cs -------------------------------------------------------------------------------- /Godot 3 Tests/RootSceneWithNoNamespace.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/RootSceneWithNoNamespace.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/Run.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/Run.cs -------------------------------------------------------------------------------- /Godot 3 Tests/Run.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/Run.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/AmbiguousTypeWithImplicitUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/AmbiguousTypeWithImplicitUsings.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/AmbiguousTypeWithImplicitUsings.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/AmbiguousTypeWithImplicitUsings.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/CachedNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/CachedNodes.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/CachedNodes.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/CachedNodes.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/CustomControls/CustomControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/CustomControls/CustomControl.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/CustomControls/CustomControlWithNoNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/CustomControls/CustomControlWithNoNamespace.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/EmptyScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/EmptyScene.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/EmptyScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/EmptyScene.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/EmptySceneWithNoNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/EmptySceneWithNoNamespace.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/EmptySceneWithNoNamespace.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/EmptySceneWithNoNamespace.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/OnInstantiateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/OnInstantiateTests.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/OnInstantiateTests.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/OnInstantiateTests.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test0Arg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test0Arg.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test0Arg.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test0Arg.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test1Arg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test1Arg.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test1Arg.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test1Arg.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test2Arg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test2Arg.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test2Arg.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test2Arg.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test3Arg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test3Arg.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test3Arg.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/Test3Arg.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/TestNamespaceArg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/TestNamespaceArg.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/TestNamespaceArg.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature26.OnInstantiateTests/TestNamespaceArg.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature29.ImplicitConversion/ImplicitConversionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature29.ImplicitConversion/ImplicitConversionTests.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature59.InputMapAttribute/InputMapAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature59.InputMapAttribute/InputMapAttributeTests.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature59.InputMapAttribute/InputMapAttributeTests.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature59.InputMapAttribute/InputMapAttributeTests.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature59.InputMapAttribute/MyInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature59.InputMapAttribute/MyInput.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesEnumTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesEnumTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesEnumTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesEnumTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesIndexTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesIndexTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesIndexTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesIndexTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesNameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesNameTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesNameTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesNameTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature59.LayerNamesAttribute/MyLayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature59.LayerNamesAttribute/MyLayers.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadExtensionTests.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScene.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneCS.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneCS.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneCS.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneGD.gd: -------------------------------------------------------------------------------- 1 | extends Control 2 | -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneGD.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneGD.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript1.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript1.gd -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript2.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript2.gd -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript3.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript3.gd -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScene.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneCS.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneCS.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneCS.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneGD.gd: -------------------------------------------------------------------------------- 1 | extends "AutoloadSceneGD.gd" 2 | -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneGD.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneGD.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript1.gd: -------------------------------------------------------------------------------- 1 | extends MyAutoloadScript1 # Won't resolve this -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript2.gd: -------------------------------------------------------------------------------- 1 | extends "AutoloadScript2.gd" -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript3.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript3.gd -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/RenamedAutoLoad1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/RenamedAutoLoad1.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/RenamedAutoLoad2.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature93.AutoloadExtensions/RenamedAutoLoad2.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature94.TscnFilePath/TscnFilePathTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature94.TscnFilePath/TscnFilePathTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Feature94.TscnFilePath/TscnFilePathTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Feature94.TscnFilePath/TscnFilePathTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/GodotNotifyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/GodotNotifyTests.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/GodotNotifyTests.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/GodotNotifyTests.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/GodotOverrideInheritanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/GodotOverrideInheritanceTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/GodotOverrideInheritanceTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/GodotOverrideInheritanceTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/GodotOverrideTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/GodotOverrideTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/GodotOverrideTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/GodotOverrideTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InheritedScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InheritedScene.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InheritedScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InheritedScene.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InheritedSceneTypeOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InheritedSceneTypeOverride.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InheritedSceneWithBaseChanges1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InheritedSceneWithBaseChanges1.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InheritedSceneWithBaseChanges1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InheritedSceneWithBaseChanges1.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InheritedSceneWithBaseChanges2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InheritedSceneWithBaseChanges2.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InheritedSceneWithBaseChanges2.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InheritedSceneWithBaseChanges2.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InheritedSceneWithInstancedScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InheritedSceneWithInstancedScene.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InheritedSceneWithInstancedScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InheritedSceneWithInstancedScene.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InstancedScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InstancedScene.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InstancedScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InstancedScene.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InstancedSceneFromDifferentNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InstancedSceneFromDifferentNamespace.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InstancedSceneFromDifferentNamespace.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InstancedSceneFromDifferentNamespace.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InstancingSceneWithSameNameAsNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InstancingSceneWithSameNameAsNamespace.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/InstancingSceneWithSameNameAsNamespace.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/InstancingSceneWithSameNameAsNamespace.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue14.SameNameTest/GenericRoot/GenericRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue14.SameNameTest/GenericRoot/GenericRoot.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue14.SameNameTest/GenericRoot/GenericRoot.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue14.SameNameTest/GenericRoot/GenericRoot.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue14.SameNameTest/GenericRootTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue14.SameNameTest/GenericRootTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue14.SameNameTest/GenericRootTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue14.SameNameTest/GenericRootTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue14.SameNameTest/Namespace.Global/SameName.cs: -------------------------------------------------------------------------------- 1 | using Godot; 2 | 3 | public class SameName : Control 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue14.SameNameTest/Namespace.Global/SameName.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue14.SameNameTest/Namespace.Global/SameName.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue14.SameNameTest/Namespace.SameAsParent/SameName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue14.SameNameTest/Namespace.SameAsParent/SameName.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue14.SameNameTest/SameNameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue14.SameNameTest/SameNameTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue14.SameNameTest/SameNameTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue14.SameNameTest/SameNameTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue15.EditableChildren/EditableChildrenTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue15.EditableChildren/EditableChildrenTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue15.EditableChildren/EditableChildrenTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue15.EditableChildren/EditableChildrenTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue15.EditableChildren/MyLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue15.EditableChildren/MyLabel.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue15.EditableChildren/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue15.EditableChildren/Scene.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue15.EditableChildren/Scene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue15.EditableChildren/Scene.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue15.EditableChildren/SceneWithEditableChildren.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue15.EditableChildren/SceneWithEditableChildren.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue15.EditableChildren/SceneWithEditableChildren.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue15.EditableChildren/SceneWithEditableChildren.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue17.LoadAsPlaceholder/LoadAsPlaceholderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue17.LoadAsPlaceholder/LoadAsPlaceholderTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue17.LoadAsPlaceholder/LoadAsPlaceholderTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue17.LoadAsPlaceholder/LoadAsPlaceholderTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue17.LoadAsPlaceholder/TestScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue17.LoadAsPlaceholder/TestScene.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue17.LoadAsPlaceholder/TestScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue17.LoadAsPlaceholder/TestScene.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue34.PathTooLongError/PathTooLongError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue34.PathTooLongError/PathTooLongError.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue34.PathTooLongError/PathTooLongError.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue34.PathTooLongError/PathTooLongError.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue43.BuiltInScript/BuiltInScriptTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue43.BuiltInScript/BuiltInScriptTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue43.BuiltInScript/BuiltInScriptTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue43.BuiltInScript/BuiltInScriptTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue44.ExternalGdScript/ExternalGdScriptTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue44.ExternalGdScript/ExternalGdScriptTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue44.ExternalGdScript/ExternalGdScriptTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue44.ExternalGdScript/ExternalGdScriptTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue44.ExternalGdScript/MyNode.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue44.ExternalGdScript/MyNode.gd -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue50.UnsupportedOverrides/Test.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue50.UnsupportedOverrides/Test.glb -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue50.UnsupportedOverrides/TestScript.cs: -------------------------------------------------------------------------------- 1 | using Godot; 2 | 3 | public class TestScript : Spatial 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue66.DiscardWorkaround/DiscardWorkaroundTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue66.DiscardWorkaround/DiscardWorkaroundTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue66.DiscardWorkaround/DiscardWorkaroundTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue66.DiscardWorkaround/DiscardWorkaroundTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue69.SubNodeSceneTree/SubNodeSceneTreeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue69.SubNodeSceneTree/SubNodeSceneTreeTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue69.SubNodeSceneTree/SubNodeSceneTreeTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue69.SubNodeSceneTree/SubNodeSceneTreeTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue69.SubNodeSceneTree/SubNodeScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue69.SubNodeSceneTree/SubNodeScript.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue70.DisableHiddenInheritedMemberWarning/SceneA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue70.DisableHiddenInheritedMemberWarning/SceneA.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue70.DisableHiddenInheritedMemberWarning/SceneA.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue70.DisableHiddenInheritedMemberWarning/SceneA.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue70.DisableHiddenInheritedMemberWarning/SceneB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue70.DisableHiddenInheritedMemberWarning/SceneB.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue70.DisableHiddenInheritedMemberWarning/SceneB.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue70.DisableHiddenInheritedMemberWarning/SceneB.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene1.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene1.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene2.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene2.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene2.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene3.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene3.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene3.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/SceneForScriptWithDifferentName.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/SceneForScriptWithDifferentName.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/SceneWithSameName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/SceneWithSameName.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/SceneWithSameName.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/SceneWithSameName.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/ScenesWithoutScripts/InheritingSceneWithoutScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/ScenesWithoutScripts/InheritingSceneWithoutScript.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/ScenesWithoutScripts/InheritingSceneWithoutScript.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/ScenesWithoutScripts/InheritingSceneWithoutScript.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/ScenesWithoutScripts/InstancingSceneWithoutScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/ScenesWithoutScripts/InstancingSceneWithoutScript.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/ScenesWithoutScripts/InstancingSceneWithoutScript.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/ScenesWithoutScripts/InstancingSceneWithoutScript.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/ScenesWithoutScripts/SceneWithoutScript.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/ScenesWithoutScripts/SceneWithoutScript.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/ScriptForSceneWithDifferentName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/ScriptForSceneWithDifferentName.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/SeparateSceneNamespace/SceneInDifferentNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/SeparateSceneNamespace/SceneInDifferentNamespace.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/SeparateSceneNamespace/SceneInDifferentNamespace.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/SeparateSceneNamespace/SceneInDifferentNamespace.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/SeparateSceneNamespace/SceneWithSameName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/SeparateSceneNamespace/SceneWithSameName.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/SeparateSceneNamespace/SceneWithSameName.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/SeparateSceneNamespace/SceneWithSameName.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/TraverseInstancedScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/TraverseInstancedScene.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/TraverseInstancedScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/TraverseInstancedScene.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/UniqueSceneNameAccess/UniqueSceneNameAccessTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/UniqueSceneNameAccess/UniqueSceneNameAccessTest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/TestScenes/UniqueSceneNameAccess/UniqueSceneNameAccessTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/TestScenes/UniqueSceneNameAccess/UniqueSceneNameAccessTest.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/Callable.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/Callable.Extensions.cs -------------------------------------------------------------------------------- /Godot 3 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/Callable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/Callable.cs -------------------------------------------------------------------------------- /Godot 3 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/ITest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/ITest.cs -------------------------------------------------------------------------------- /Godot 3 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/TestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/TestRunner.cs -------------------------------------------------------------------------------- /Godot 3 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/TestRunner.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/TestRunner.tscn -------------------------------------------------------------------------------- /Godot 3 Tests/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/nuget.config -------------------------------------------------------------------------------- /Godot 3 Tests/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 3 Tests/project.godot -------------------------------------------------------------------------------- /Godot 4 Tests/.editor/ProjectTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/.editor/ProjectTemplate.cs -------------------------------------------------------------------------------- /Godot 4 Tests/.filenesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/.filenesting.json -------------------------------------------------------------------------------- /Godot 4 Tests/Assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/Assets/icon.svg -------------------------------------------------------------------------------- /Godot 4 Tests/Assets/tr/tr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/Assets/tr/tr.csv -------------------------------------------------------------------------------- /Godot 4 Tests/Assets/tr/tr.de.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/Assets/tr/tr.de.translation -------------------------------------------------------------------------------- /Godot 4 Tests/Assets/tr/tr.en.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/Assets/tr/tr.en.translation -------------------------------------------------------------------------------- /Godot 4 Tests/Assets/tr/tr.fr.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/Assets/tr/tr.fr.translation -------------------------------------------------------------------------------- /Godot 4 Tests/Assets/tr/tr.jp.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/Assets/tr/tr.jp.translation -------------------------------------------------------------------------------- /Godot 4 Tests/CustomGeneratorTests/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Godot 4 Tests/CustomGeneratorTests/MyTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/CustomGeneratorTests/MyTestClass.cs -------------------------------------------------------------------------------- /Godot 4 Tests/CustomGeneratorTests/MyTestClassWithNoNamespaceAndSameName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/CustomGeneratorTests/MyTestClassWithNoNamespaceAndSameName.cs -------------------------------------------------------------------------------- /Godot 4 Tests/Godot 4 Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/Godot 4 Tests.csproj -------------------------------------------------------------------------------- /Godot 4 Tests/Godot 4 Tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/Godot 4 Tests.sln -------------------------------------------------------------------------------- /Godot 4 Tests/ManualTests/CustomClassSyntaxHighlightingVS/MyCustomClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/ManualTests/CustomClassSyntaxHighlightingVS/MyCustomClass.cs -------------------------------------------------------------------------------- /Godot 4 Tests/ManualTests/CustomClassSyntaxHighlightingVS/MyCustomClass.cs.uid: -------------------------------------------------------------------------------- 1 | uid://blpatvjx0tesc 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/ManualTests/CustomClassSyntaxHighlightingVS/MyScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/ManualTests/CustomClassSyntaxHighlightingVS/MyScene.cs -------------------------------------------------------------------------------- /Godot 4 Tests/ManualTests/CustomClassSyntaxHighlightingVS/MyScene.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c5wpji8s1oq6o 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/ManualTests/CustomClassSyntaxHighlightingVS/MyScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/ManualTests/CustomClassSyntaxHighlightingVS/MyScene.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/ManualTests/SceneTreeUsageInExportProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/ManualTests/SceneTreeUsageInExportProperty.cs -------------------------------------------------------------------------------- /Godot 4 Tests/ManualTests/SceneTreeUsageInExportProperty.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bw4a40xm80cbl 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/ManualTests/SceneTreeUsageInExportProperty.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/ManualTests/SceneTreeUsageInExportProperty.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/Properties/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Godot 4 Tests/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/Properties/launchSettings.json -------------------------------------------------------------------------------- /Godot 4 Tests/RootScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/RootScene.cs -------------------------------------------------------------------------------- /Godot 4 Tests/RootScene.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cmuprftwnxish 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/RootScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/RootScene.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/RootSceneWithNoNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/RootSceneWithNoNamespace.cs -------------------------------------------------------------------------------- /Godot 4 Tests/RootSceneWithNoNamespace.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cagjm5co2ptrt 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/RootSceneWithNoNamespace.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/RootSceneWithNoNamespace.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/Run.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/Run.cs -------------------------------------------------------------------------------- /Godot 4 Tests/Run.cs.uid: -------------------------------------------------------------------------------- 1 | uid://0610fi7nurdi 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/Run.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/Run.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/AmbiguousTypeWithImplicitUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/AmbiguousTypeWithImplicitUsings.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/AmbiguousTypeWithImplicitUsings.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c3g0e8d806suv 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/AmbiguousTypeWithImplicitUsings.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/AmbiguousTypeWithImplicitUsings.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/CachedNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/CachedNodes.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/CachedNodes.cs.uid: -------------------------------------------------------------------------------- 1 | uid://ch5secensm11i 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/CachedNodes.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/CachedNodes.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/CustomControls/CustomControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/CustomControls/CustomControl.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/CustomControls/CustomControl.cs.uid: -------------------------------------------------------------------------------- 1 | uid://nx2k53b5l0ux 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/CustomControls/CustomControlWithNoNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/CustomControls/CustomControlWithNoNamespace.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/CustomControls/CustomControlWithNoNamespace.cs.uid: -------------------------------------------------------------------------------- 1 | uid://7udnmkc25wj6 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/EmptyScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/EmptyScene.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/EmptyScene.cs.uid: -------------------------------------------------------------------------------- 1 | uid://2ega2slkwrvu 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/EmptyScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/EmptyScene.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/EmptySceneWithNoNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/EmptySceneWithNoNamespace.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/EmptySceneWithNoNamespace.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c4mr4epgbxubh 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/EmptySceneWithNoNamespace.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/EmptySceneWithNoNamespace.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature111.AudioBusAttribute/AudioBusAttributeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature111.AudioBusAttribute/AudioBusAttributeTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature111.AudioBusAttribute/AudioBusAttributeTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bfix11pqgufvp 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/AnimLib2.res.depren: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/AnimLib2.res.depren -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/AnimationAttributeTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dy46pnliwhh2p 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib0.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib0.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c64o0v1yuhhta 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib0.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib0.tres -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib1.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib1.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dt6svl32p0beo 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib1.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib1.tres -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib2.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib2.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bfgfwcr60iis 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib2.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MyAnimLib2.tres -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MySharedAnim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MySharedAnim.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MySharedAnim.cs.uid: -------------------------------------------------------------------------------- 1 | uid://33ujeibuguew 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MySharedAnim.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MySharedAnim.tres -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MySpriteFrames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MySpriteFrames.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MySpriteFrames.cs.uid: -------------------------------------------------------------------------------- 1 | uid://416konjg0e4l 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MySpriteFrames.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature112.AnimationAttribute/MySpriteFrames.tres -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.ISceneTree/ISceneTreeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature121.ISceneTree/ISceneTreeTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.ISceneTree/ISceneTreeTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://73nnkhj1tsob 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.ISceneTree/ISceneTreeTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature121.ISceneTree/ISceneTreeTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene1.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene1.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c3bcuw6p3q3b4 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene1.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene2.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene2.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b7miropwunnuk 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene2.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene2.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene3.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene3.cs.uid: -------------------------------------------------------------------------------- 1 | uid://csv5l40tg1gfq 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene3.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature121.ISceneTree/Scene3.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.InstantiableAttribute/InstantiableAttributeTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c8aoxj47h5801 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.InstantiableAttribute/TestCustomNoInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature121.InstantiableAttribute/TestCustomNoInit.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.InstantiableAttribute/TestCustomNoInit.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cfvmyeftcw6fv 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.InstantiableAttribute/TestCustomWithInit.cs.uid: -------------------------------------------------------------------------------- 1 | uid://jq06qu3mnr50 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.InstantiableAttribute/TestDefaultNoInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature121.InstantiableAttribute/TestDefaultNoInit.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.InstantiableAttribute/TestDefaultNoInit.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bpqwkreyt2d7a 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature121.InstantiableAttribute/TestDefaultWithInit.cs.uid: -------------------------------------------------------------------------------- 1 | uid://du0cmvdxc8hvo 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature122.TranslationAttributeTests/Resources/tr.csv: -------------------------------------------------------------------------------- 1 | ../../../Assets/tr/tr.csv -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature122.TranslationAttributeTests/TranslationAttributeTestScene.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bi1s420n5fylt 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature122.TranslationAttributeTests/TranslationAttributeTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dx7qwf2xsodig 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature124.ShaderAttributeTests/ShaderAttributeTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b4oo2wlmr56od 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature124.ShaderAttributeTests/TestShaders/EmptyShader.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cc5etvjiapp27 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature124.ShaderAttributeTests/TestShaders/EmptyShader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://dnvbcgbiapg7a 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature124.ShaderAttributeTests/TestShaders/EmptyShaderAsShaderMaterial.cs.uid: -------------------------------------------------------------------------------- 1 | uid://h0og0sl14bje 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature124.ShaderAttributeTests/TestShaders/InvalidShader.cs.uid: -------------------------------------------------------------------------------- 1 | uid://sujy4r6ph0cx 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature124.ShaderAttributeTests/TestShaders/MyShader.cs.uid: -------------------------------------------------------------------------------- 1 | uid://ca8rg8y00sm7g 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature124.ShaderAttributeTests/TestShaders/MyShader.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://2vsg4eewos8p 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature124.ShaderAttributeTests/TestShaders/MyShaderAsShaderMaterial.cs.uid: -------------------------------------------------------------------------------- 1 | uid://coxyxk3lom2xe 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature124.ShaderAttributeTests/TestShaders/MyShaderWithDefaults.cs.uid: -------------------------------------------------------------------------------- 1 | uid://4ibjce1q6sua 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature124.ShaderAttributeTests/TestShaders/MyShaderWithDefaults.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://bq65a2cnah0p2 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature124.ShaderAttributeTests/TestShaders/MyShaderWithDefaultsAsShaderMaterial.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bsyfjoiymvwtt 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature132.RpcExtensions/RpcExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature132.RpcExtensions/RpcExtensionTests.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature132.RpcExtensions/RpcExtensionTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://xw0f3j6qhy23 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature132.RpcExtensions/RpcExtensionTests.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature132.RpcExtensions/RpcExtensionTests.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature143.PauseNotifyEvents/PauseNotifyEventsTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://ue0io8fkmb3i 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/ResourceTreeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature148.ResourceTree/ResourceTreeTests.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/ResourceTreeTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://tyjsxc2njtw2 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/ResourceTreeTests.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature148.ResourceTree/ResourceTreeTests.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/.ignored/MyRes.txt: -------------------------------------------------------------------------------- 1 | folders starting with . should be excluded 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/MyCsShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/MyCsShader.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/MyCsShader.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dmex1g7fv35a 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/MyCsShader.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/MyCsShader.tres -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/MyGdShader.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/MyGdShader.gd -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/MyGdShader.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dwdevd03t3rpx 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/MyGdShader.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/MyGdShader.tres -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/MyNoShader.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/MyNoShader.tres -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/addons/MyRes.txt: -------------------------------------------------------------------------------- 1 | addons folder should be excluded 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/ignored/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/ignored/MyRes.txt: -------------------------------------------------------------------------------- 1 | folders with .gdignore should be excluded 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/xtras/3DModel.txt: -------------------------------------------------------------------------------- 1 | txt 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/xtras/Model3D.txt: -------------------------------------------------------------------------------- 1 | txt 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/xtras/MyRes.cfg: -------------------------------------------------------------------------------- 1 | cfg 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature148.ResourceTree/Resources/xtras/MyRes.csv: -------------------------------------------------------------------------------- 1 | cfg 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature150.AutoEnum/AutoEnumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature150.AutoEnum/AutoEnumTests.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature150.AutoEnum/AutoEnumTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cv8txhafyltii 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature150.AutoEnum/AutoEnumTests.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature150.AutoEnum/AutoEnumTests.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/CustomScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/CustomScope.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/CustomScope.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c0ein4d3c2fwg 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/CustomScope.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/CustomScope.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/DefaultScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/DefaultScope.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/DefaultScope.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b5uen5b80a2l5 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/DefaultScope.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/DefaultScope.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/InvalidScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/InvalidScope.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/InvalidScope.cs.uid: -------------------------------------------------------------------------------- 1 | uid://d25a3y67vfdw4 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/InvalidScope.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/InvalidScope.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/UniqueNodeScopeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/UniqueNodeScopeTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/UniqueNodeScopeTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cf0vh1cgkojcb 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/UniqueNodeScopeTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature152.UniqueNodeScope/UniqueNodeScopeTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/OnInstantiateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/OnInstantiateTests.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/OnInstantiateTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dlc5hk3672v6j 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/OnInstantiateTests.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/OnInstantiateTests.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test0Arg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test0Arg.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test0Arg.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dxswsf1kmwwu4 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test0Arg.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test0Arg.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test1Arg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test1Arg.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test1Arg.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dnk25ttbljek7 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test1Arg.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test1Arg.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test2Arg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test2Arg.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test2Arg.cs.uid: -------------------------------------------------------------------------------- 1 | uid://7oi8s5020qsr 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test2Arg.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test2Arg.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test3Arg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test3Arg.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test3Arg.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cutv3h18e3ifi 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test3Arg.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/Test3Arg.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/TestConstructor_DefaultProtectedScope.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cavgbls6c15bs 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/TestConstructor_EmptyScope.cs.uid: -------------------------------------------------------------------------------- 1 | uid://chhdnicvywycn 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/TestConstructor_NoneScope.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dms46ylge123i 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/TestConstructor_NullScope.cs.uid: -------------------------------------------------------------------------------- 1 | uid://btwcxx204207h 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/TestConstructor_PrivateScope.cs.uid: -------------------------------------------------------------------------------- 1 | uid://qkoe4p0xegoi 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/TestNamespaceArg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/TestNamespaceArg.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/TestNamespaceArg.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dji24xxjmplps 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/TestNamespaceArg.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature26.OnInstantiateTests/TestNamespaceArg.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature29.ImplicitConversion/ImplicitConversionTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bqcqjfi64eqd5 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature31.OnImportAttribute/OnImportTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature31.OnImportAttribute/OnImportTests.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature31.OnImportAttribute/OnImportTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cq86wvfhfscqd 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature31.OnImportAttribute/OnImportTests.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature31.OnImportAttribute/OnImportTests.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature59.InputMapAttribute/InputMapAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature59.InputMapAttribute/InputMapAttributeTests.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature59.InputMapAttribute/InputMapAttributeTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://crdb44n2n4o8e 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature59.InputMapAttribute/MyInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature59.InputMapAttribute/MyInput.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature59.InputMapAttribute/MyInput.cs.uid: -------------------------------------------------------------------------------- 1 | uid://jjm5n0mr4bcw 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesEnumTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesEnumTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesEnumTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://3jlo0p75c83r 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesEnumTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesEnumTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesIndexTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesIndexTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesIndexTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bj0qkqa7edy70 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesNameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesNameTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesNameTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://q72ytojh5dxk 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesNameTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/LayerNamesNameTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/MyLayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/MyLayers.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature59.LayerNamesAttribute/MyLayers.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cpwohyfdegur4 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature87.Notify.PartialProperties/NotifyPartialPropertiesTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bqxj7pbixtyvl 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature92.GlobalGroupsAttribute/GlobalGroupsAttributeTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b1wkkfjrrwu36 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadExtensionTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cnmfgrvtybjbv 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadRenameTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bob0afodqpivt 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScene.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneCS.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneCS.cs.uid: -------------------------------------------------------------------------------- 1 | uid://gp3hqmve25dt 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneCS.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneCS.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneGD.gd: -------------------------------------------------------------------------------- 1 | extends Control 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneGD.gd.uid: -------------------------------------------------------------------------------- 1 | uid://brpq1e5vwyhc 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneGD.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadSceneGD.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bjj4ld85qiqyr 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript1.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript1.gd -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript1.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d1jsevglpnk3k 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript2.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript2.gd -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript2.gd.uid: -------------------------------------------------------------------------------- 1 | uid://chmll382gly 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript3.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript3.gd -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/AutoloadScript3.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cxr0wyscoe80p 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScene.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneCS.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneCS.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cnfqpxhssqu4c 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneCS.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneCS.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneGD.gd: -------------------------------------------------------------------------------- 1 | extends "AutoloadSceneGD.gd" 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneGD.gd.uid: -------------------------------------------------------------------------------- 1 | uid://drpbwu2i1e80r 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneGD.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedSceneGD.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bvafsexx4pd3 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript1.gd: -------------------------------------------------------------------------------- 1 | extends MyAutoloadScript1 # Won't resolve this 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript1.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bmwo5lo4ikt4d 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript2.gd: -------------------------------------------------------------------------------- 1 | extends "AutoloadScript2.gd" 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript2.gd.uid: -------------------------------------------------------------------------------- 1 | uid://satpumtpu7ua 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript3.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript3.gd -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/InheritedScript3.gd.uid: -------------------------------------------------------------------------------- 1 | uid://darnfi0q3ox2k 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/RenamedAutoLoad1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/RenamedAutoLoad1.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/RenamedAutoLoad2.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature93.AutoloadExtensions/RenamedAutoLoad2.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature94.TscnFilePath/TscnFilePathTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature94.TscnFilePath/TscnFilePathTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature94.TscnFilePath/TscnFilePathTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bhrn1ga1t7mpk 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature94.TscnFilePath/TscnFilePathTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature94.TscnFilePath/TscnFilePathTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature99.SingletonAttribute/SingletonAttributeTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dar5qkd8khnyt 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature99.SingletonAttribute/SoloData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature99.SingletonAttribute/SoloData.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature99.SingletonAttribute/SoloData.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cg21loh1nvhq7 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature99.SingletonAttribute/SoloNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature99.SingletonAttribute/SoloNode.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature99.SingletonAttribute/SoloNode.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cryi3fyglpbpw 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature99.SingletonAttribute/SoloScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature99.SingletonAttribute/SoloScene.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature99.SingletonAttribute/SoloScene.cs.uid: -------------------------------------------------------------------------------- 1 | uid://jo1fsexylcbm 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Feature99.SingletonAttribute/SoloScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Feature99.SingletonAttribute/SoloScene.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/GodotNotifyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/GodotNotifyTests.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/GodotNotifyTests.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dundk0r2xmvyi 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/GodotNotifyTests.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/GodotNotifyTests.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/GodotOverrideInheritanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/GodotOverrideInheritanceTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/GodotOverrideInheritanceTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cl4rv122j3y6o 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/GodotOverrideInheritanceTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/GodotOverrideInheritanceTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/GodotOverrideTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/GodotOverrideTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/GodotOverrideTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cx4uvpa13uxg4 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/GodotOverrideTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/GodotOverrideTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InheritedScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InheritedScene.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InheritedScene.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cqh8i1ej2osmt 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InheritedScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InheritedScene.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InheritedSceneTypeOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InheritedSceneTypeOverride.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InheritedSceneTypeOverride.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c45djus8a5ec 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InheritedSceneWithBaseChanges1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InheritedSceneWithBaseChanges1.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InheritedSceneWithBaseChanges1.cs.uid: -------------------------------------------------------------------------------- 1 | uid://pjgh4benqbxw 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InheritedSceneWithBaseChanges1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InheritedSceneWithBaseChanges1.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InheritedSceneWithBaseChanges2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InheritedSceneWithBaseChanges2.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InheritedSceneWithBaseChanges2.cs.uid: -------------------------------------------------------------------------------- 1 | uid://by0ttegjxw6t2 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InheritedSceneWithBaseChanges2.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InheritedSceneWithBaseChanges2.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InheritedSceneWithInstancedScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InheritedSceneWithInstancedScene.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InheritedSceneWithInstancedScene.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dhvr4sh2wpp2d 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InheritedSceneWithInstancedScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InheritedSceneWithInstancedScene.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InstancedScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InstancedScene.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InstancedScene.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b4uce38r5b4n4 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InstancedScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InstancedScene.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InstancedSceneFromDifferentNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InstancedSceneFromDifferentNamespace.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InstancedSceneFromDifferentNamespace.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cixossxcdwluf 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InstancedSceneFromDifferentNamespace.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InstancedSceneFromDifferentNamespace.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InstancingSceneWithSameNameAsNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InstancingSceneWithSameNameAsNamespace.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InstancingSceneWithSameNameAsNamespace.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dcukt1hs84n2e 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/InstancingSceneWithSameNameAsNamespace.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/InstancingSceneWithSameNameAsNamespace.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/GenericRoot/GenericRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue14.SameNameTest/GenericRoot/GenericRoot.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/GenericRoot/GenericRoot.cs.uid: -------------------------------------------------------------------------------- 1 | uid://chjkx5t2xv8w7 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/GenericRoot/GenericRoot.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue14.SameNameTest/GenericRoot/GenericRoot.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/GenericRoot/GenericRoot/GenericRoot.cs.uid: -------------------------------------------------------------------------------- 1 | uid://ca0pvshjqp6p2 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/GenericRootTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue14.SameNameTest/GenericRootTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/GenericRootTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://muapyc2q6poo 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/GenericRootTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue14.SameNameTest/GenericRootTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/Namespace.ChildOfParent/SameName.cs.uid: -------------------------------------------------------------------------------- 1 | uid://df57k8816iphm 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/Namespace.Global/SameName.cs: -------------------------------------------------------------------------------- 1 | using Godot; 2 | 3 | public partial class SameName : Control 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/Namespace.Global/SameName.cs.uid: -------------------------------------------------------------------------------- 1 | uid://mdiqew6ayn4c 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/Namespace.Global/SameName.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue14.SameNameTest/Namespace.Global/SameName.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/Namespace.SameAsParent/SameName.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c6x00cchm3kb3 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/SameNameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue14.SameNameTest/SameNameTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/SameNameTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://nxw063do2j5x 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue14.SameNameTest/SameNameTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue14.SameNameTest/SameNameTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue15.EditableChildren/EditableChildrenTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue15.EditableChildren/EditableChildrenTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue15.EditableChildren/EditableChildrenTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dgtjpd1cpdwdp 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue15.EditableChildren/EditableChildrenTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue15.EditableChildren/EditableChildrenTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue15.EditableChildren/EditableChildrenWithTraversalTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://crv4v8uo24qbe 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue15.EditableChildren/MyLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue15.EditableChildren/MyLabel.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue15.EditableChildren/MyLabel.cs.uid: -------------------------------------------------------------------------------- 1 | uid://djuankn56eidu 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue15.EditableChildren/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue15.EditableChildren/Scene.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue15.EditableChildren/Scene.cs.uid: -------------------------------------------------------------------------------- 1 | uid://jxvhw3vvtrb5 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue15.EditableChildren/Scene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue15.EditableChildren/Scene.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue15.EditableChildren/SceneWithEditableChildren.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue15.EditableChildren/SceneWithEditableChildren.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue15.EditableChildren/SceneWithEditableChildren.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b7mhnsw0brvoi 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue160.OnInstantiateWithMultipleMethods/OnInstantiateWithMultipleMethodsTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://fgrciw4nssbr 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue160.OnInstantiateWithMultipleMethods/SUT1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue160.OnInstantiateWithMultipleMethods/SUT1.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue160.OnInstantiateWithMultipleMethods/SUT1.cs.uid: -------------------------------------------------------------------------------- 1 | uid://be71wybxslust 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue160.OnInstantiateWithMultipleMethods/SUT1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue160.OnInstantiateWithMultipleMethods/SUT1.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue160.OnInstantiateWithMultipleMethods/SUT2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue160.OnInstantiateWithMultipleMethods/SUT2.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue160.OnInstantiateWithMultipleMethods/SUT2.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dw77gev2gba8u 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue160.OnInstantiateWithMultipleMethods/SUT2.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue160.OnInstantiateWithMultipleMethods/SUT2.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue17.LoadAsPlaceholder/LoadAsPlaceholderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue17.LoadAsPlaceholder/LoadAsPlaceholderTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue17.LoadAsPlaceholder/LoadAsPlaceholderTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://doj3s0ki1eakp 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue17.LoadAsPlaceholder/LoadAsPlaceholderTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue17.LoadAsPlaceholder/LoadAsPlaceholderTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue17.LoadAsPlaceholder/TestScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue17.LoadAsPlaceholder/TestScene.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue17.LoadAsPlaceholder/TestScene.cs.uid: -------------------------------------------------------------------------------- 1 | uid://ctkymgpv67cxf 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue17.LoadAsPlaceholder/TestScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue17.LoadAsPlaceholder/TestScene.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue34.PathTooLongError/PathTooLongError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue34.PathTooLongError/PathTooLongError.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue34.PathTooLongError/PathTooLongError.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c4mc75eoqi80h 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue34.PathTooLongError/PathTooLongError.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue34.PathTooLongError/PathTooLongError.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue43.BuiltInScript/BuiltInScriptTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue43.BuiltInScript/BuiltInScriptTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue43.BuiltInScript/BuiltInScriptTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://brt5bjoj3mxn3 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue43.BuiltInScript/BuiltInScriptTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue43.BuiltInScript/BuiltInScriptTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue44.ExternalGdScript/ExternalGdScriptTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue44.ExternalGdScript/ExternalGdScriptTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue44.ExternalGdScript/ExternalGdScriptTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dp7nxbxe4oui0 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue44.ExternalGdScript/ExternalGdScriptTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue44.ExternalGdScript/ExternalGdScriptTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue44.ExternalGdScript/MyNode.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue44.ExternalGdScript/MyNode.gd -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue44.ExternalGdScript/MyNode.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b7v5ribidt5v3 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue50.UnsupportedOverrides/Test.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue50.UnsupportedOverrides/Test.glb -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue50.UnsupportedOverrides/TestScript.cs: -------------------------------------------------------------------------------- 1 | using Godot; 2 | 3 | public partial class TestScript : Node3D 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue50.UnsupportedOverrides/TestScript.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cqkv5gu8yevnw 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue50.UnsupportedOverrides/UnsupportedInheritedOverride.cs.uid: -------------------------------------------------------------------------------- 1 | uid://r03kcc0nu1og 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue50.UnsupportedOverrides/UnsupportedInstancedOverride.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b8m1lnpcohw02 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue55.TypeNameCaseMismatch/TypeNameCaseMismatchTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://k7wvme1yn2q0 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue66.DiscardWorkaround/DiscardWorkaroundTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue66.DiscardWorkaround/DiscardWorkaroundTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue66.DiscardWorkaround/DiscardWorkaroundTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://77lr1cp08j05 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue66.DiscardWorkaround/DiscardWorkaroundTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue66.DiscardWorkaround/DiscardWorkaroundTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue69.SubNodeSceneTree/SubNodeSceneTreeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue69.SubNodeSceneTree/SubNodeSceneTreeTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue69.SubNodeSceneTree/SubNodeSceneTreeTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dvk16a4q82sfi 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue69.SubNodeSceneTree/SubNodeSceneTreeTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue69.SubNodeSceneTree/SubNodeSceneTreeTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue69.SubNodeSceneTree/SubNodeScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue69.SubNodeSceneTree/SubNodeScript.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue69.SubNodeSceneTree/SubNodeScript.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cnfmxm4mw6prh 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue70.DisableHiddenInheritedMemberWarning/SceneA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue70.DisableHiddenInheritedMemberWarning/SceneA.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue70.DisableHiddenInheritedMemberWarning/SceneA.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dljwnqpoqfkl5 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue70.DisableHiddenInheritedMemberWarning/SceneB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue70.DisableHiddenInheritedMemberWarning/SceneB.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue70.DisableHiddenInheritedMemberWarning/SceneB.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dhi5apjxj84k6 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/OnInstantiateWithDefaultParamsTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://wi1cn0dbucua 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene1.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene1.cs.uid: -------------------------------------------------------------------------------- 1 | uid://d3ekuweyb01ko 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene1.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene2.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene2.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c6b3f5udnlx4a 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene2.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene2.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene3.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene3.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c5d1qt4qg10kv 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene3.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/Issue72.OnInstantiateWithDefaultParams/Scene3.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/SceneForScriptWithDifferentName.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/SceneForScriptWithDifferentName.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/SceneWithSameName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/SceneWithSameName.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/SceneWithSameName.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c0dl48a2d2uo8 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/SceneWithSameName.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/SceneWithSameName.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/SceneWithSameNameAsNamespace/SceneWithSameNameAsNamespace.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b4dmlakr3fsts 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/ScenesWithoutScripts/InheritingSceneWithoutScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/ScenesWithoutScripts/InheritingSceneWithoutScript.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/ScenesWithoutScripts/InheritingSceneWithoutScript.cs.uid: -------------------------------------------------------------------------------- 1 | uid://chqv48uwjt6v 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/ScenesWithoutScripts/InstancingSceneWithoutScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/ScenesWithoutScripts/InstancingSceneWithoutScript.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/ScenesWithoutScripts/InstancingSceneWithoutScript.cs.uid: -------------------------------------------------------------------------------- 1 | uid://os80ews7xccc 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/ScenesWithoutScripts/SceneWithoutScript.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/ScenesWithoutScripts/SceneWithoutScript.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/ScriptForSceneWithDifferentName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/ScriptForSceneWithDifferentName.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/ScriptForSceneWithDifferentName.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b85m7q4tplcer 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/SeparateSceneNamespace/SceneInDifferentNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/SeparateSceneNamespace/SceneInDifferentNamespace.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/SeparateSceneNamespace/SceneInDifferentNamespace.cs.uid: -------------------------------------------------------------------------------- 1 | uid://datercje4mt7c 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/SeparateSceneNamespace/SceneInDifferentNamespace.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/SeparateSceneNamespace/SceneInDifferentNamespace.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/SeparateSceneNamespace/SceneWithSameName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/SeparateSceneNamespace/SceneWithSameName.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/SeparateSceneNamespace/SceneWithSameName.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cguwr7xyw3lq5 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/SeparateSceneNamespace/SceneWithSameName.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/SeparateSceneNamespace/SceneWithSameName.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/SeparateScriptNamespace/ScriptForSceneWithDifferentPath.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cgtsso1jgtl1e 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/TraverseInstancedScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/TraverseInstancedScene.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/TraverseInstancedScene.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cxhvv22d5h8fh 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/TraverseInstancedScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/TraverseInstancedScene.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/UniqueSceneNameAccess/UniqueSceneNameAccessTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/UniqueSceneNameAccess/UniqueSceneNameAccessTest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/UniqueSceneNameAccess/UniqueSceneNameAccessTest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://eaobsjq8p20o 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/TestScenes/UniqueSceneNameAccess/UniqueSceneNameAccessTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/TestScenes/UniqueSceneNameAccess/UniqueSceneNameAccessTest.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/Utils/Extensions/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/Utils/Extensions/ReflectionExtensions.cs -------------------------------------------------------------------------------- /Godot 4 Tests/Utils/Extensions/ReflectionExtensions.cs.uid: -------------------------------------------------------------------------------- 1 | uid://clqnw0rhpik5m 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/ITest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/ITest.cs -------------------------------------------------------------------------------- /Godot 4 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/ITest.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bk8ok47ubewpc 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/TestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/TestRunner.cs -------------------------------------------------------------------------------- /Godot 4 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/TestRunner.cs.uid: -------------------------------------------------------------------------------- 1 | uid://2tkt5h7h610x 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/TestRunner.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/addons/GodotSharp.BuildingBlocks.TestRunner/TestRunner.tscn -------------------------------------------------------------------------------- /Godot 4 Tests/addons/GodotSharp.SourceGenerator.PluginTests/EmptyFile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/addons/GodotSharp.SourceGenerator.PluginTests/EmptyFile.zip -------------------------------------------------------------------------------- /Godot 4 Tests/addons/GodotSharp.SourceGenerator.PluginTests/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/addons/GodotSharp.SourceGenerator.PluginTests/Plugin.cs -------------------------------------------------------------------------------- /Godot 4 Tests/addons/GodotSharp.SourceGenerator.PluginTests/Plugin.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cyix6ft88bn5q 2 | -------------------------------------------------------------------------------- /Godot 4 Tests/addons/GodotSharp.SourceGenerator.PluginTests/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/addons/GodotSharp.SourceGenerator.PluginTests/plugin.cfg -------------------------------------------------------------------------------- /Godot 4 Tests/default_bus_layout.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/default_bus_layout.tres -------------------------------------------------------------------------------- /Godot 4 Tests/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/nuget.config -------------------------------------------------------------------------------- /Godot 4 Tests/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/Godot 4 Tests/project.godot -------------------------------------------------------------------------------- /GodotSharp.SourceGenerators.log.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/GodotSharp.SourceGenerators.log.lnk -------------------------------------------------------------------------------- /GodotSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/GodotSharp.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/LICENSE -------------------------------------------------------------------------------- /NRT.Tests/GD3.NRT/.filenesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD3.NRT/.filenesting.json -------------------------------------------------------------------------------- /NRT.Tests/GD3.NRT/GD3.NRT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD3.NRT/GD3.NRT.csproj -------------------------------------------------------------------------------- /NRT.Tests/GD3.NRT/GD3.NRT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD3.NRT/GD3.NRT.sln -------------------------------------------------------------------------------- /NRT.Tests/GD3.NRT/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD3.NRT/Main.cs -------------------------------------------------------------------------------- /NRT.Tests/GD3.NRT/Main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD3.NRT/Main.tscn -------------------------------------------------------------------------------- /NRT.Tests/GD3.NRT/Properties/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NRT.Tests/GD3.NRT/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD3.NRT/Properties/launchSettings.json -------------------------------------------------------------------------------- /NRT.Tests/GD3.NRT/TestWithNonNullableNRT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD3.NRT/TestWithNonNullableNRT.cs -------------------------------------------------------------------------------- /NRT.Tests/GD3.NRT/TestWithNonNullableNRT.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD3.NRT/TestWithNonNullableNRT.tscn -------------------------------------------------------------------------------- /NRT.Tests/GD3.NRT/TestWithNullableNRT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD3.NRT/TestWithNullableNRT.cs -------------------------------------------------------------------------------- /NRT.Tests/GD3.NRT/TestWithNullableNRT.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD3.NRT/TestWithNullableNRT.tscn -------------------------------------------------------------------------------- /NRT.Tests/GD3.NRT/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD3.NRT/nuget.config -------------------------------------------------------------------------------- /NRT.Tests/GD3.NRT/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD3.NRT/project.godot -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/.filenesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD4.NRT/.filenesting.json -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/GD4.NRT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD4.NRT/GD4.NRT.csproj -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/GD4.NRT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD4.NRT/GD4.NRT.sln -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD4.NRT/Main.cs -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/Main.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c6hjy5jukwiou 2 | -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/Main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD4.NRT/Main.tscn -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/Properties/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD4.NRT/Properties/launchSettings.json -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/TestWithNonNullableNRT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD4.NRT/TestWithNonNullableNRT.cs -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/TestWithNonNullableNRT.cs.uid: -------------------------------------------------------------------------------- 1 | uid://o4i1et0876wp 2 | -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/TestWithNonNullableNRT.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD4.NRT/TestWithNonNullableNRT.tscn -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/TestWithNullableNRT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD4.NRT/TestWithNullableNRT.cs -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/TestWithNullableNRT.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bd25p6r3d1ou5 2 | -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/TestWithNullableNRT.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD4.NRT/TestWithNullableNRT.tscn -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD4.NRT/nuget.config -------------------------------------------------------------------------------- /NRT.Tests/GD4.NRT/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/NRT.Tests/GD4.NRT/project.godot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/README.md -------------------------------------------------------------------------------- /SourceGenerators/AnimNamesExtensions/AnimNamesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AnimNamesExtensions/AnimNamesAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/AnimNamesExtensions/AnimNamesDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AnimNamesExtensions/AnimNamesDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/AnimNamesExtensions/AnimNamesScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AnimNamesExtensions/AnimNamesScraper.cs -------------------------------------------------------------------------------- /SourceGenerators/AnimNamesExtensions/AnimNamesSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AnimNamesExtensions/AnimNamesSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/AnimNamesExtensions/AnimNamesTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AnimNamesExtensions/AnimNamesTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/AnimNamesExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AnimNamesExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/AudioBusExtensions/AudioBusAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AudioBusExtensions/AudioBusAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/AudioBusExtensions/AudioBusDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AudioBusExtensions/AudioBusDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/AudioBusExtensions/AudioBusScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AudioBusExtensions/AudioBusScraper.cs -------------------------------------------------------------------------------- /SourceGenerators/AudioBusExtensions/AudioBusSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AudioBusExtensions/AudioBusSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/AudioBusExtensions/AudioBusTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AudioBusExtensions/AudioBusTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/AudioBusExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AudioBusExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/AutoEnumExtensions/AutoEnumAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AutoEnumExtensions/AutoEnumAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/AutoEnumExtensions/AutoEnumClassDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AutoEnumExtensions/AutoEnumClassDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/AutoEnumExtensions/AutoEnumClassSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AutoEnumExtensions/AutoEnumClassSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/AutoEnumExtensions/AutoEnumClassTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AutoEnumExtensions/AutoEnumClassTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/AutoEnumExtensions/AutoEnumDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AutoEnumExtensions/AutoEnumDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/AutoEnumExtensions/AutoEnumSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AutoEnumExtensions/AutoEnumSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/AutoEnumExtensions/AutoEnumTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AutoEnumExtensions/AutoEnumTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/AutoEnumExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AutoEnumExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/AutoloadExtensions/AutoloadAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AutoloadExtensions/AutoloadAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/AutoloadExtensions/AutoloadDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AutoloadExtensions/AutoloadDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/AutoloadExtensions/AutoloadScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AutoloadExtensions/AutoloadScraper.cs -------------------------------------------------------------------------------- /SourceGenerators/AutoloadExtensions/AutoloadSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AutoloadExtensions/AutoloadSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/AutoloadExtensions/AutoloadTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AutoloadExtensions/AutoloadTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/AutoloadExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/AutoloadExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/CodeCommentsExtensions/CodeCommentsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/CodeCommentsExtensions/CodeCommentsAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/CodeCommentsExtensions/CodeCommentsDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/CodeCommentsExtensions/CodeCommentsDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/CodeCommentsExtensions/CodeCommentsSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/CodeCommentsExtensions/CodeCommentsSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/CodeCommentsExtensions/CodeCommentsTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/CodeCommentsExtensions/CodeCommentsTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/CodeCommentsExtensions/ICodeComments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/CodeCommentsExtensions/ICodeComments.cs -------------------------------------------------------------------------------- /SourceGenerators/CodeCommentsExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/CodeCommentsExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/DiagnosticDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/DiagnosticDetail.cs -------------------------------------------------------------------------------- /SourceGenerators/GlobalGroupsExtensions/GlobalGroupsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GlobalGroupsExtensions/GlobalGroupsAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/GlobalGroupsExtensions/GlobalGroupsDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GlobalGroupsExtensions/GlobalGroupsDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/GlobalGroupsExtensions/GlobalGroupsScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GlobalGroupsExtensions/GlobalGroupsScraper.cs -------------------------------------------------------------------------------- /SourceGenerators/GlobalGroupsExtensions/GlobalGroupsSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GlobalGroupsExtensions/GlobalGroupsSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/GlobalGroupsExtensions/GlobalGroupsTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GlobalGroupsExtensions/GlobalGroupsTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/GlobalGroupsExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GlobalGroupsExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GlobalSuppressions.cs -------------------------------------------------------------------------------- /SourceGenerators/GodotNotifyExtensions/GodotNotifyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GodotNotifyExtensions/GodotNotifyAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/GodotNotifyExtensions/GodotNotifyDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GodotNotifyExtensions/GodotNotifyDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/GodotNotifyExtensions/GodotNotifySourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GodotNotifyExtensions/GodotNotifySourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/GodotNotifyExtensions/GodotNotifyTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GodotNotifyExtensions/GodotNotifyTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/GodotNotifyExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GodotNotifyExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/GodotOverrideExtensions/GodotOverrideAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GodotOverrideExtensions/GodotOverrideAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/GodotOverrideExtensions/GodotOverrideDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GodotOverrideExtensions/GodotOverrideDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/GodotOverrideExtensions/GodotOverrideSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GodotOverrideExtensions/GodotOverrideSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/GodotOverrideExtensions/GodotOverrideTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GodotOverrideExtensions/GodotOverrideTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/GodotOverrideExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/GodotOverrideExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/InputMapExtensions/InputMapAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/InputMapExtensions/InputMapAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/InputMapExtensions/InputMapDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/InputMapExtensions/InputMapDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/InputMapExtensions/InputMapScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/InputMapExtensions/InputMapScraper.cs -------------------------------------------------------------------------------- /SourceGenerators/InputMapExtensions/InputMapSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/InputMapExtensions/InputMapSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/InputMapExtensions/InputMapTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/InputMapExtensions/InputMapTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/InputMapExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/InputMapExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/InstantiableExtensions/InstantiableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/InstantiableExtensions/InstantiableAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/InstantiableExtensions/InstantiableDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/InstantiableExtensions/InstantiableDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/InstantiableExtensions/InstantiableSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/InstantiableExtensions/InstantiableSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/InstantiableExtensions/InstantiableTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/InstantiableExtensions/InstantiableTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/InstantiableExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/InstantiableExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/LayerNamesExtensions/LayerNamesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/LayerNamesExtensions/LayerNamesAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/LayerNamesExtensions/LayerNamesDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/LayerNamesExtensions/LayerNamesDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/LayerNamesExtensions/LayerNamesScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/LayerNamesExtensions/LayerNamesScraper.cs -------------------------------------------------------------------------------- /SourceGenerators/LayerNamesExtensions/LayerNamesSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/LayerNamesExtensions/LayerNamesSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/LayerNamesExtensions/LayerNamesTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/LayerNamesExtensions/LayerNamesTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/LayerNamesExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/LayerNamesExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/OnImportExtensions/OnImportAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/OnImportExtensions/OnImportAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/OnImportExtensions/OnImportDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/OnImportExtensions/OnImportDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/OnImportExtensions/OnImportSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/OnImportExtensions/OnImportSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/OnImportExtensions/OnImportTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/OnImportExtensions/OnImportTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/OnImportExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/OnImportExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/OnInstantiateExtensions/OnInstantiateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/OnInstantiateExtensions/OnInstantiateAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/OnInstantiateExtensions/OnInstantiateDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/OnInstantiateExtensions/OnInstantiateDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/OnInstantiateExtensions/OnInstantiateSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/OnInstantiateExtensions/OnInstantiateSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/OnInstantiateExtensions/OnInstantiateTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/OnInstantiateExtensions/OnInstantiateTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/OnInstantiateExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/OnInstantiateExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/ResourceTreeExtensions/ResourceTreeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/ResourceTreeExtensions/ResourceTreeAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/ResourceTreeExtensions/ResourceTreeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/ResourceTreeExtensions/ResourceTreeConfig.cs -------------------------------------------------------------------------------- /SourceGenerators/ResourceTreeExtensions/ResourceTreeDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/ResourceTreeExtensions/ResourceTreeDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/ResourceTreeExtensions/ResourceTreeNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/ResourceTreeExtensions/ResourceTreeNodes.cs -------------------------------------------------------------------------------- /SourceGenerators/ResourceTreeExtensions/ResourceTreeScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/ResourceTreeExtensions/ResourceTreeScraper.cs -------------------------------------------------------------------------------- /SourceGenerators/ResourceTreeExtensions/ResourceTreeSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/ResourceTreeExtensions/ResourceTreeSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/ResourceTreeExtensions/ResourceTreeTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/ResourceTreeExtensions/ResourceTreeTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/ResourceTreeExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/ResourceTreeExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/RpcExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/RpcExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/RpcExtensions/RpcDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/RpcExtensions/RpcDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/RpcExtensions/RpcSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/RpcExtensions/RpcSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/RpcExtensions/RpcTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/RpcExtensions/RpcTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/SceneTreeExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SceneTreeExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/SceneTreeExtensions/SceneTreeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SceneTreeExtensions/SceneTreeAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/SceneTreeExtensions/SceneTreeDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SceneTreeExtensions/SceneTreeDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/SceneTreeExtensions/SceneTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SceneTreeExtensions/SceneTreeNode.cs -------------------------------------------------------------------------------- /SourceGenerators/SceneTreeExtensions/SceneTreeScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SceneTreeExtensions/SceneTreeScraper.cs -------------------------------------------------------------------------------- /SourceGenerators/SceneTreeExtensions/SceneTreeSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SceneTreeExtensions/SceneTreeSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/SceneTreeExtensions/SceneTreeTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SceneTreeExtensions/SceneTreeTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/ShaderExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/ShaderExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/ShaderExtensions/ShaderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/ShaderExtensions/ShaderAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/ShaderExtensions/ShaderDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/ShaderExtensions/ShaderDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/ShaderExtensions/ShaderScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/ShaderExtensions/ShaderScraper.cs -------------------------------------------------------------------------------- /SourceGenerators/ShaderExtensions/ShaderSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/ShaderExtensions/ShaderSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/ShaderExtensions/ShaderTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/ShaderExtensions/ShaderTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/Shared/Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Shared/Scope.cs -------------------------------------------------------------------------------- /SourceGenerators/Shared/Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Shared/Shared.cs -------------------------------------------------------------------------------- /SourceGenerators/Shared/Tools/MiniCsScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Shared/Tools/MiniCsScraper.cs -------------------------------------------------------------------------------- /SourceGenerators/Shared/Tools/MiniImportScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Shared/Tools/MiniImportScraper.cs -------------------------------------------------------------------------------- /SourceGenerators/Shared/Tools/MiniTresScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Shared/Tools/MiniTresScraper.cs -------------------------------------------------------------------------------- /SourceGenerators/Shared/Tools/MiniUidScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Shared/Tools/MiniUidScraper.cs -------------------------------------------------------------------------------- /SourceGenerators/Shared/Utils.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Shared/Utils.scriban -------------------------------------------------------------------------------- /SourceGenerators/SingletonExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SingletonExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/SingletonExtensions/SingletonAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SingletonExtensions/SingletonAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/SingletonExtensions/SingletonDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SingletonExtensions/SingletonDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/SingletonExtensions/SingletonSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SingletonExtensions/SingletonSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/SingletonExtensions/SingletonTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SingletonExtensions/SingletonTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/SourceGeneratorForDeclaredEnumWithAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SourceGeneratorForDeclaredEnumWithAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/SourceGeneratorForDeclaredFieldWithAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SourceGeneratorForDeclaredFieldWithAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/SourceGeneratorForDeclaredMemberWithAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SourceGeneratorForDeclaredMemberWithAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/SourceGeneratorForDeclaredMethodWithAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SourceGeneratorForDeclaredMethodWithAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/SourceGeneratorForDeclaredPropertyWithAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SourceGeneratorForDeclaredPropertyWithAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/SourceGeneratorForDeclaredTypeWithAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SourceGeneratorForDeclaredTypeWithAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/SourceGenerators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SourceGenerators.csproj -------------------------------------------------------------------------------- /SourceGenerators/SourceGenerators.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/SourceGenerators.sln -------------------------------------------------------------------------------- /SourceGenerators/TranslationExtensions/CSVScraper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/TranslationExtensions/CSVScraper.cs -------------------------------------------------------------------------------- /SourceGenerators/TranslationExtensions/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/TranslationExtensions/Resources.cs -------------------------------------------------------------------------------- /SourceGenerators/TranslationExtensions/TranslationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/TranslationExtensions/TranslationAttribute.cs -------------------------------------------------------------------------------- /SourceGenerators/TranslationExtensions/TranslationDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/TranslationExtensions/TranslationDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/TranslationExtensions/TranslationSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/TranslationExtensions/TranslationSourceGenerator.cs -------------------------------------------------------------------------------- /SourceGenerators/TranslationExtensions/TranslationTemplate.scriban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/TranslationExtensions/TranslationTemplate.scriban -------------------------------------------------------------------------------- /SourceGenerators/Utilities/DataModel/BaseDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/DataModel/BaseDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/DataModel/ClassDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/DataModel/ClassDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/DataModel/MemberDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/DataModel/MemberDataModel.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Diagnostics/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Diagnostics/Diagnostics.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Extensions/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Extensions/AssemblyExtensions.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Extensions/CompilationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Extensions/CompilationExtensions.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Extensions/GeneratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Extensions/GeneratorExtensions.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Extensions/GodotExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Extensions/GodotExtensions.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Extensions/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Extensions/LinqExtensions.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Extensions/ParamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Extensions/ParamExtensions.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Extensions/RegexExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Extensions/RegexExtensions.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Extensions/ScribanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Extensions/ScribanExtensions.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Extensions/SymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Extensions/SymbolExtensions.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Extensions/SyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Extensions/SyntaxExtensions.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Log.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/Tree.cs -------------------------------------------------------------------------------- /SourceGenerators/Utilities/TreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/SourceGenerators/Utilities/TreeNode.cs -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cat-Lips/GodotSharp.SourceGenerators/HEAD/nuget.config --------------------------------------------------------------------------------