We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried compiling this in VS and errored.
In Patches/RoadEditor/RoadEditorMainPanel_Patch.cs, an argument is missing to InstantiatePrefab
InstantiatePrefab
Fix which worked for me:
if(elevationInfo != null) { elevationInfo = AssetEditorRoadUtils.InstantiatePrefab(elevationInfo, true); }
In Data/NetworkExtensions/PropRenderData.cs, an argument is missing for RenderInstance
RenderInstance
A boolean should be added at the end.
Fix:
global::TreeInstance.RenderInstance(cameraInfo, variation, currentData.Position, scale, brightness, RenderManager.DefaultColorLocation, true);
I have managed to build RoadBuilder mod using the mod compiled after these changes and it works in game.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tried compiling this in VS and errored.
In Patches/RoadEditor/RoadEditorMainPanel_Patch.cs, an argument is missing to
InstantiatePrefab
Fix which worked for me:
In Data/NetworkExtensions/PropRenderData.cs, an argument is missing for
RenderInstance
A boolean should be added at the end.
Fix:
global::TreeInstance.RenderInstance(cameraInfo, variation, currentData.Position, scale, brightness, RenderManager.DefaultColorLocation, true);
I have managed to build RoadBuilder mod using the mod compiled after these changes and it works in game.
The text was updated successfully, but these errors were encountered: