Skip to content

Commit f5cd968

Browse files
committed
Replace old paint gun references with customizer
1 parent b4bedd6 commit f5cd968

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

modules/ROOT/pages/Development/BeginnersGuide/SimpleMod/buildable.adoc

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,14 @@ Look to other machines and examples for inspiration as there are several relevan
5151

5252
== Make it Paintable
5353

54-
We want to make our buildable xref:Development/Satisfactory/Paintable.adoc[paintable], meaning, able to be painted it with the paint gun. Because the `FGBuildable`-class already provides a basic implementation for that, we just need our buildable's mesh to use the `MI_Factory_Base_01` material. The provided example mesh already provides a proper UV map for said material, so you will not need to edit the UVs of the provided mesh. You will need to do so for your own models. More info on the materials already in the game can be found at xref:Development/Modeling/MainMaterials.adoc[Main Materials] documentation page.
54+
We want to make our buildable xref:Development/Satisfactory/Paintable.adoc[paintable], meaning, able to be colored with the Customizer.
55+
Because the `FGBuildable`-class already provides a basic implementation for that, we just need our buildable's mesh to use the `MI_Factory_Base_01` material.
56+
The provided example mesh already provides a proper UV map for said material, so you will not need to edit the UVs of the provided mesh.
57+
You will need to do so for your own models.
58+
More info on the materials already in the game can be found at xref:Development/Modeling/MainMaterials.adoc[Main Materials] documentation page.
5559

56-
You must ensure that the materials of the Mesh and Buildable are set to point to a material called `MI_Factory_Base_01` within `+Content/FactoryGame/-Shared/Material+`. If this does not exist, create a placeholder material in its place, and it will point to the correct texture within the game.
60+
You must ensure that the materials of the Mesh and Buildable are set to point to a material called `MI_Factory_Base_01` within `+Content/FactoryGame/-Shared/Material+`.
61+
If this does not exist, create a placeholder material in its place, and it will point to the correct texture within the game.
5762

5863
[WARNING]
5964
====
@@ -125,7 +130,7 @@ That's it! You don't need to register anything else. When the recipe gets loaded
125130
== Trying it Out
126131

127132
If you load up the game now, you should be able to build the Doc Build in game.
128-
You should be able to paint it with the paint tool, and it should look roughly like it does in the icon image.
133+
You should be able to paint it with the Customizer, and it should look roughly like it does in the icon image.
129134

130135
== Troubleshooting
131136

0 commit comments

Comments
 (0)