Skip to content

Commit

Permalink
Try to fix script compiler build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
drojf committed Oct 6, 2024
1 parent 21ba0c6 commit 02860f7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion Assembly-CSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
<Reference Include="Antlr3.Runtime">
<HintPath>DLLs\Antlr3.Runtime.dll</HintPath>
</Reference>
<Compile Include="MOD.ImageMapping\MODImageMappingSaveData.cs" />
<Compile Include="MOD.Scripts.Core\MODUnityLoggerShim.cs" />
<Compile Include="MOD.Scripts.Core\MODXMLWrapper.cs" />
<Compile Include="MOD.Scripts.AssetManager\MODAssetManager.cs" />
Expand Down Expand Up @@ -247,6 +246,7 @@
<Compile Include="LTRect.cs" />
<Compile Include="LTSpline.cs" />
<Compile Include="MenuUIController.cs" />
<Compile Include="MOD.ImageMapping\MODImageMappingSaveData.cs" />
<Compile Include="MOD.ImageMapping\MODImageMapping.cs" />
<Compile Include="MOD.Scripts.Core.Audio\MODBGMInfo.cs" />
<Compile Include="MOD.Scripts.Core.Config\MODConfig.cs" />
Expand Down
7 changes: 0 additions & 7 deletions BGICompiler.Compiler/NoUnityScriptCompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using MOD.Scripts.Core.UnityLoggerShim;
using System;
using System.IO;
using MOD.ImageMapping;

namespace BGICompiler.Compiler
{
Expand Down Expand Up @@ -63,12 +62,6 @@ private static bool CompileFolder(string srcDir, string destDir)

public static int Main(string[] args)
{
bool doImageMappingTest = false;
if(doImageMappingTest)
{
MODImageMapping.TEST_Lookup("D:\\drojf\\large_projects\\umineko\\hou-plus-og-sprites-new\\mod_usable_files\\mapping.json");
}

if(args.Length < 2)
{
Debug.LogError($"Got {args.Length} args but need at least two args:\n" +
Expand Down

0 comments on commit 02860f7

Please sign in to comment.