Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.22 KB

README.md

File metadata and controls

40 lines (31 loc) · 1.22 KB

SourceGenerators

In order for prefab / scene enum gen to work the following needs to be added in the main Godot .csproj

<!-- Include Prefabs source generator -->
  <ItemGroup>
    <ProjectReference Include="Template\SourceGenerators\MySourceGenerator\MySourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
    <Compile Remove="Template\SourceGenerators\**" />
  </ItemGroup>

  <!-- These files will be available to the source generators -->
  <ItemGroup>
    <!-- Include prefab files -->
    <AdditionalFiles Include="**\Prefabs\**\*.tscn" />
    <!-- Include scene files -->
    <AdditionalFiles Include="Scenes\**\*.tscn" />
  </ItemGroup>

Switching Scenes

Important

You will need to restart your IDE if you want to see the new changes to the Prefab and Scene classes.

Any .tscn files placed in the following paths will be added to Prefab and Scene classes.

  • Prefab Resources:

    • Search Path: res://**/Prefabs/**/*.tscn
    • Associated Class: Prefab
  • Scene Resources:

    • Search Path: res://Scenes/**/*.tscn
    • Associated Class: Scene

Example Usage

Game.SwitchScene(Scene.UICredits);
Game.SwitchScene(Prefab.UIOptions);