Scrap Mechanic Wiki
No edit summary
Tag: Visual edit
(Updated "Block List Functions")
Tag: Visual edit
Line 155: Line 155:
 
Make sure that you save your textures as .tga files and use the 32bits/pixel resolution to include the alpha channel. For normal maps, make sure the file name ends with "_nor.tga".
 
Make sure that you save your textures as .tga files and use the 32bits/pixel resolution to include the alpha channel. For normal maps, make sure the file name ends with "_nor.tga".
   
==Block List Functions (OUTDATED)==
+
==Block List Functions==
Adding blocks to scrap mechanic is quite simple since you don't need to link to any meshes. But there are various values and functions you can write in depending on what type of block you'd like to make. Below are various functions you can write in your .json file to modify the behavior of your block.
+
Adding blocks to scrap mechanic is quite simple since you don't need to link to any meshes. But there are various values and functions you can write in depending on what type of block you'd like to make. Below are various functions you can write in your iles to modify the behavior of your block.
   
 
===UUID===
 
===UUID===
UUID is your unique id for the part/block You can easily generate one at: https://www.uuidgenerator.net/, If you want to replace an old part instead of adding one, you use the same uuid as the one you wish to replace.
+
UUID is your unique id for the part/block You can easily generate one through the mod tool, If you want to replace an old part instead of adding one, you use the same uuid as the one you wish to replace.
 
{| class="wikitable"
 
{| class="wikitable"
 
|Example UUID
 
|Example UUID
Line 174: Line 174:
 
|-
 
|-
 
|"dif"
 
|"dif"
|"$MOD_DATA/Textures/examplename_dif.tga"
+
|"$CONTENT_DATA/Textures/examplename_dif.tga"
 
|Links to your diffuse texture in your mod library.
 
|Links to your diffuse texture in your mod library.
 
|-
 
|-
 
|"asg"
 
|"asg"
|"$MOD_DATA/Textures/examplename_asg.tga"
+
|"$CONTENT_DATA/Textures/examplename_asg.tga"
 
|Links to your asg texture in your mod library.
 
|Links to your asg texture in your mod library.
 
|-
 
|-
 
|"nor"
 
|"nor"
|"$MOD_DATA/Textures/examplename_nor.tga"
+
|"$CONTENT_DATA/Textures/examplename_nor.tga"
 
|Links to your normal map texture in your mod library.
 
|Links to your normal map texture in your mod library.
 
|}
 
|}
Changing "$MOD_DATA" to "$GAME_DATA" allows you to link to an already existing texture from the local game library.
+
Changing "$CONTENT_DATA" to "$GAME_DATA"/"$SURVIVAL_DATA" allows you to link to an already existing texture from the local gamemode libraries.
   
 
===Material===
 
===Material===
Line 208: Line 208:
 
|Renders a UV positions sequence, requires "custom" next to it
 
|Renders a UV positions sequence, requires "custom" next to it
 
|}
 
|}
More materials can be found in "...\Steam\steamapps\common\Scrap Mechanic\Data\Objects\Materials" partmaterials.json.
+
More materials can be found in the drop down list.
   
 
===Color===
 
===Color===
"color" decides the default color for the material in-game. This will change when you paint the object with the paint tool.
+
Color decides the default color for the material in-game. This will change when you paint the object with the paint tool.
 
{| class="wikitable"
 
{| class="wikitable"
 
|Example hex code
 
|Example hex code
Line 309: Line 309:
   
 
===Glass===
 
===Glass===
If you want to create glass you can add this function to the list.
+
If you want to create glass you can add the glass key to the list.
  +
{| class="wikitable"
 
|"glass": true
 
|}
 
 
This will make your block transparent. You tweak the green channel and the alpha channel in the ASG texture to change the look of the glass.
 
This will make your block transparent. You tweak the green channel and the alpha channel in the ASG texture to change the look of the glass.
   

Revision as of 16:59, 20 June 2022

BewareFarmbotsIcon OUTDATED INFORMATION DETECTED!
This page possibly contains out of date information. You can help Scrap Mechanic Wiki by updating it.


This article is slightly outdated as of 0.6.0 for both Scrap Mechanic and the modding tool. This page is in the process of being updated for 0.6.0.

The mod tool is made to ease the process of creating and sharing mods. With the mod tool you can easily manage all your mods through the steam workshop. If you make any changes to them, they will automatically stay up to date for everyone subscribed to them. At its current state the mod tool supports blocks and parts creation, terrain assets and custom games.

Before you create your mod, please read through our guidelines. If these guidelines are not followed we might have to ban your mod from the workshop.

Opening the mod tool can be done by; going to your Steam Library and above to the search field press "Games" and select "Tools". Locate "Scrap Mechanic Mod Tool" in your list of games.

How to Make a Basic Building Block Mod

STEP 1: Launch the "Scrap Mechanic Mod Tool". Then press "File" > "New Mod" > "Blocks & Parts" which creates a new Blocks and Parts mod.

New Mod

STEP 2: Type in a name for your mod and press "Ok".

Mod Name

STEP 3: After pressing "Ok" your screen should look like this.

Mod Explorer

This is how you will be able to manage what is in your mod. Double clicking on the tabs will expand them, showing the files related to the category under them. If you want you can delete the following files by right clicking on each item: /Effect/Database/EffectSets/example.json, /Particles/particles.json, /Objects/Database/rotationsets.rotationset.

STEP 4: Open the folder by clicking "File" > "Open Folder" make sure to click "File" in the file explorer window.

Open Folder

STEP 5: Now let's put the textures we want for our new block mod in the Textures folder Located here: Objects > Textures

We're going to use these 512x512 texture files.

512*512 is recommended for most blocks.

For more in-depth information about textures in Scrap Mechanic see How to Make Textures for Scrap Mechanic

STEP 6: Re-open the mod tool and click on /Objects/Database/ShapeSets/example.shapeset (you can rename this by right clicking) to open the file in the mod tool. Create a new "Shape" by right clicking on Shape Set and go to "Add" > "Block List".

Block List Creation

New Block List

You may be confused so let me go through some things. The yellow text means the "File" has been changed since last save. If you want to save click "File" > "Save". In the list, each block contains data that can be easily edited. Each block requires a UUID which helps the game link everything together. If you right click on the UUID field you can generate a new UUID. Asg, Dif and Nor is a path to each texture file relative to the game files or mod files. The physics material tells the game what material the block should be: Cardboard, Fruit, Foliage, etc. Tiling is how many blocks you place down before the texture repeats.

STEP 7: Fill out the block data as you want. Input textures by right clicking on the "File" button which opens your file explorer. You can add additional data by right clicking on 0. null/uuid and adding any data you would like. Once you are done make sure you save the file.

STEP 8: Creating icons or editing the mod description can be done by clicking on "Share" at the top. You can edit the mod description to your liking. Press "Create Icons" to allow the mod tool to compile all assets and create an Icon Map. You can add dependencies here and upload to steam.

Share Window

STEP 9: Congratulations! you've made your very first block mod.

If everything worked you should now be able to find your new block in the inventory.

modded block in-game

Here's how the new block looks in-game. If you're pleased with how your block looks you can share your mod on the steam workshop by pressing the "Upload To Steam" button in the Scrap Mechanic Mod Tool. You also have to change visibility from hidden to public if you want other people in the community to be able to find it.

How to Make a Basic Part Mod

STEP 1: First off, you need to make a model. Before exporting, make sure your model is placed in origin with the pivot centered. Also the the pivot axis of the model should follow the example below.

Axis Direction
X Right
Y Up
Z Depth

In Maya we use cm (centimeters) as our working unit. So that's the scale of our models and the Maya grid matches the grid in-game. The engine supports various file formats but we recommend .fbx or .obj when exporting. We also recommend that while you model, you think about how your part will fit in the in-game grid.

Axis

In Blender you can use use either "Metric" or "None" for your units. If you use metric then one meter==one block, if you use "none" then one "unit"==one block. The unit setting is in the Properties window under the Scene tab. Blender units setting location

STEP 2: Now let's put the textures we want for our new part mod in the Textures folder Located here: Objects>Textures

We're going to use these 256x256 texture files.

For more in-depth information about textures in Scrap Mechanic see "How to make textures for scrap mechanic" further down.

STEP 3: Open the mod tool and navigate to the shapeset you created last time. Next create a new part list!

New Part List

STEP 4: Create a new part by right clicking on the part list and press New > [Default]. Generate a new UUID as shown below.

Generate UUID

STEP 5: Create a new renderable. This is the data for how a mesh should be rendered in game. This contains models for different LODS and the textures.

New Renderable

STEP 5: Now it's time to add the proper information to your renderable. Create a new sub mesh list as seen below. Then fill out the data related to the DIF ASG & NOR file locations. Make sure to put the mesh as well in.

New Sub Mesh listNew Mesh

STEP 5: Go back to your part in the shape set and add the new renderable we just created. MAKE SURE TO SAVE!

How to Make Textures for Scrap Mechanic

Scrap Mechanic materials can make use of three different textures; diffuse, asg and normal maps. Diffuse defines the base color and texture for your material. ASG allows you to make areas transparent, specular, glowing or reflective. Normal maps are used for faking the lighting of bumps and dents.

Diffuse

It's important to remember that if you want to be able to use the paint tool in game on your block you will need to make use of the alpha channel in the diffuse. The darker an area of the alpha is, the more it will be affected by the coloring.

ASG

Then we make what we call an ASG texture (Alpha, Spec, Glow… And Reflectivity). We use values of various color channels to affect the material.

Channel Function Value results
Red channel (Alpha) Determines the transparency of the texture. No red value = no transparency.
Green channel (Spec) Sets the specular level of the texture. No green value = no spec.
Blue channel (Glow) Makes the texture emissive and glowing. No blue value = no glow.
Alpha channel (Reflectivity) Adds reflection to the texture. White alpha value = maximum reflection.

–What does "no value" mean?

–I'll start in order. When editing the all channels, I recommend that you use 2 colors-black and white (+ all shades of gray). The darker the color, the smaller the value and vice versa.

Normal Maps

Finally we make a normal map. These can be generated or created using various tools such as Quixel Ndo, Maya, Zbrush and many more.

For the speed of creating a normal map, I recommend the website "SmartNormap 2.0" (http://www.smart-page.net/smartnormal/)

How do I make a normal map? We export the "DIF" texture, for example, to png. After this action, we upload the image to the site listed above and then download it.

Exporting textures

Make sure that you save your textures as .tga files and use the 32bits/pixel resolution to include the alpha channel. For normal maps, make sure the file name ends with "_nor.tga".

Block List Functions

Adding blocks to scrap mechanic is quite simple since you don't need to link to any meshes. But there are various values and functions you can write in depending on what type of block you'd like to make. Below are various functions you can write in your iles to modify the behavior of your block.

UUID

UUID is your unique id for the part/block You can easily generate one through the mod tool, If you want to replace an old part instead of adding one, you use the same uuid as the one you wish to replace.

Example UUID
e2543ac2-ed58-46d0-a593-13ff8d11e02b

Texture Paths

Mod texture paths

Texture definition File path Result
"dif" "$CONTENT_DATA/Textures/examplename_dif.tga" Links to your diffuse texture in your mod library.
"asg" "$CONTENT_DATA/Textures/examplename_asg.tga" Links to your asg texture in your mod library.
"nor" "$CONTENT_DATA/Textures/examplename_nor.tga" Links to your normal map texture in your mod library.

Changing "$CONTENT_DATA" to "$GAME_DATA"/"$SURVIVAL_DATA" allows you to link to an already existing texture from the local gamemode libraries.

Material

Material changes what textures to be used for the mesh.

Material definition Result
"Dif" Only diffuse is used for this material.
"DifAsg" Diffuse and asg are used for this material.
"DifAsgNor" Diffuse, asg and normal maps are used for this material.
"DifAsgNorFlip" Renders both sides of all faces of the mesh. Can be useful if you're making a window.
"UVAnimDifAsgNor" Renders a UV positions sequence, requires "custom" next to it

More materials can be found in the drop down list.

Color

Color decides the default color for the material in-game. This will change when you paint the object with the paint tool.

Example hex code Result
"0000ff" Makes blue the default color

Density

The weight of a block/part is determined by the density value and its volume. Example: A part with a volume of 8 blocks, with the density set to 250 will weigh 2000, but will still count as light weight.

density

value

Result
250.0 Light weight
500.0 Medium weight
1250.0 Heavy weight

Tiling

Depending on your texture size, you should match a tiling value.

Tiling value Texture resolution Result
1 128 x 128 texture Tiles every block
2 256 x 256 texture Tiles every 2nd block
4 512 x 512 texture Tiles every 4th block
8 1024 x 1024 texture Tiles every 8th block
16 2048 x 2048 textures Tiles every 16th block

Physics Material

Physics materials affects the sound and particles of an object.

Cardboard
Default
Dirt
Fabric
Fence
Foilage
Fruit
Glass
Graval
Mechanical
Metal
Plastic
Potato
Rock
Sand
Sledgehammer
Tape
Water
Wood

Glass

If you want to create glass you can add the glass key to the list.

This will make your block transparent. You tweak the green channel and the alpha channel in the ASG texture to change the look of the glass.

Part List Functions (OUTDATED)

Parts in Scrap Mechanic allows for many more functions than blocks. Below are various function you can write in the .json file to change the behavior of your parts.

UUID

UUID is your unique id for the part/block. You can easily generate one at by right clicking on the UUID title. If you want to replace an old part instead of adding one, you use the same UUID as the one you wish to replace.

Example UUID
e2543ac2-ed58-46d0-a593-13ff8d11e02b

Renderable

"renderable" defines what mesh will be rendered plus the submeshes, textures and their material. Most meshes consists of just one mesh, but adding a submesh allows another part of the mesh to use a different set of textures and material.

Mod texture list paths

Choose which textures to refer to by writing in the correct folder path.

Texture definition File path Result
"dif" "$MOD_DATA/Textures/examplename_dif.tga" Links to your diffuse texture in your mod library.
"asg" "$MOD_DATA/Textures/examplename_asg.tga" Links to your asg texture in your mod library.
"nor" "$MOD_DATA/Textures/examplename_nor.tga" Links to your normal map texture in your mod library.

Mesh path

Choose which mesh to refer to by writing in the correct folder path.

Mesh definition File path Result
"mesh" "$MOD_DATA/Objects/Mesh/examplename.fbx Links to your mesh in your mod library

Changing "$MOD_DATA" to "$GAME_DATA" allows you to link to an already existing mesh or texture from the local game library.

Material

Material changes what textures to be used for the mesh.

Material definition Result
"Dif" Only diffuse is used for this material.
"DifAsg" Diffuse and asg are used for this material.
"DifNor" Diffuse and normal maps are used for this material.
"DifAsgNor" Diffuse, asg and normal maps are used for this material.
"DifAsgNorFlip" renders both sides of all faces of the mesh. Can be useful when your making a window.

More materials can be found in "...\Steam\steamapps\common\Scrap Mechanic\Data\Objects\Materials" partmaterials.json.

Color

"color" decides the default color for the material in-game. This will change when you paint the object with the paint tool.

Example hex code Result
"0000ff" Makes blue the default color

Collision

The collision 3 different options. Box, cylinder or hull.

Box

The box collision will create a box surrounding your mesh.

Example box values Result
"box": { "x": 1, "y": 2, "z": 3 } Creates a box collision with the dimensions corresponding to the values of x, y, and z.

Cylinder

A cylinder collision is good to use for wheels or round objects.

Example cylinder values Result
"cylinder": { "diameter": 7, "depth": 1, "margin": 0.5, "axis": "Z" } Diameter is the size of the cylinder. Depth sets the thickness. Margin sets the bevel amount, pretty much rounds the edges. Axis determines in which direction the cylinder is facing.

Hull

A hull collision is created using a pointlist. It draws lines between vertex coordinates. These vertex coordinates can be found if you for an example open an .obj mesh with a text editor. However it's good to make a simplified mesh to not get too many coordinates in the list.

Example hull values Result
"hull": {

"x": 1, "y": 1, "z": 1,

"pointList": [

{ "x": 1.0, "y": -1.0, "z": -1.0 },

{ "x": -1.0, "y": -1.0, "z": -1.0 },

{ "x": -1.0, "y": -1.0, "z": 1.0 },

{ "x": 1.0, "y": -1.0, "z": 1.0 }

]

}

x, y, and z defines the size of a space/cube which the pointlist will fit itself in

Each row in the pointList of x, y, and z, refers to the location of a single vertex point. Together the rows create the hitbox shape.

Hull shape

Density

The weight of a block/part is determined by the density value and its volume. The 'density' value is the weight per block of the part, regardless of the volume of the mesh or collision shape.

Example: A part with a volume of 8 blocks, with the density set to 250 will weigh 2000, but will still count as light weight.

density

value

Result
250.0 Light weight
500.0 Medium weight
1250.0 Heavy weight

Physics Material

Physics materials affects the sound and particles of an object.

grass
plastic
stone
wood
metal
glass
steering

Interactive Part List Functions (OUTDATED)

Interactive functions

Interactive parts include buttons and switches, engines, seats and everything that has a specific function. Here's all the functions you can add to your part list:

"bearing": { } bearing
"timedjoint": { } controller
"lever": { } switch
"button": { } button
"sensor": { } sensor
"radio": { } radio
"horn": { } horn
"logic": { } logic gate
"timer": { } timer

These are easy to implement, just add them to your part list and you're done. If you wish to make them animate, you'll need some additional lines and models.

Pose animation

Lets take a closer look on the part list for an ordinary button:

Interactive1

Here you can see that it's not much different from the other part lists. The material has been changed to support pose animations.

Pose animations are simple, and don't require any animation.

You simply export two models, one with the model in its off state, in this case an un-pressed button. And one in its on state, pushed button.

It's important that these two models are identical, and that you only move vertices to get the other state.

6,5

Advanced interactive functions

These require some more lines to work properly, we recommend copying the .json file from the game files and then edit them to fit your mod. You can find the .json for all interactive parts here:

Steam\steamapps\common\Scrap Mechanic\Data\Objects\Database\ShapeSets

"spring": { } suspension
"steering": { } driver seat
"seat": { } seat
"engine": { } engine
"thruster": { } thruster
"tone": { } tote bot head
"spotlight": { } headlamp

Inventory Descriptions

Each block/part will not have a name or description until you create

STEP 1: Open the following file in the Mod Tool "/Gui/Language/English/inventoryDescriptions.json"

STEP 2: Rename the first entry with the block/part uuid.

Inventory Description Window

STEP 3: Add the title of the block/part.

STEP 4: You can add a description and keywords by right clicking on the UUID field.

STEP 5: Save the file and test it in game. The inventory will now display the name and description that you selected.

Crafting

Warning: Custom crafting recipes are currently not supported in workshop-compatible mods

Crafting is important for any block or item that you want to be accessible in survival mode, though it is relatively simple.

CraftingFileLocation

Recipes under their corresponding bench name will be crafted at that bench, with "hideout" being the trader, "dispenser" the mechanic station where the cookbot is built and "workbench" the default craftbot that will spawn in certain structures.

Concrete

This is the vanilla code for the "Concrete1" crafting recipe as an example.

The first itemId is that of the block you want to craft, followed by how many of this item you want to be crafted under quantity, and how long (in seconds) it takes to craft this item under craftTime.

The quantity under ingredientList states how many of that specific block or part is necessary, i.e., four water for ten concrete.

Icons

Many people are inattentive, which is why they spend a lot of time on icons...

Icons are made easily and quickly!

  • Launch the mod tool program
  • Select the desired mod
  • Click "Share" > "Create Icons"

(if the object is invisible, its icon must be created manually)

Third-Party Utilities

Third-party utilities are used for modding Scrap Mechanic, but are not officially supported by Axolot Games.

Crafting Recipe Editors

Utilities for changing crafting recipes in survival mode.

  • SMEMT (currently only supports Craftbot recipes)