Skip to content
Merged

Blah #39

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Elements/MenuElement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,5 @@ public void SetGameObjectParent(GameObject container) =>
Container.transform.SetParent(container.transform, false);

/// <inheritdoc/>
public void ClearGameObjectParent() => Container.transform.parent = null;
public void ClearGameObjectParent() => Container.transform.SetParent(null);
}
3 changes: 3 additions & 0 deletions Silksong.ModMenu.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
<PackageReference Include="UnityEngine.Modules" Version="6000.0.50" IncludeAssets="compile" />
<PackageReference Include="CSharpier.MsBuild" Version="1.2.6" PrivateAssets="all" />
</ItemGroup>
<PropertyGroup Condition="'$(CI)' == 'true'">
<MonoDetourHookGenStripUnusedHooks>true</MonoDetourHookGenStripUnusedHooks>
</PropertyGroup>
<ItemGroup Condition="!$(UseLocalRefs) Or !Exists($(ManagedFolder))">
<PackageReference Include="Silksong.GameLibs" Version="*-*" PrivateAssets="all" />
</ItemGroup>
Expand Down