-
Notifications
You must be signed in to change notification settings - Fork 3
Customizing for Your Mod
Kirbeast edited this page Jul 3, 2026
·
2 revisions
A guide to changing branding and updating the launcher for your mod.
Edit sd:/apps/(yourmod)/meta.xml and add the codes path:
<arg>-codespath=sd:/(yourmod)</arg>This tells the launcher where your mod files are located. Folder where codes are located.
Create/edit sd:/(yourmod)/info.xml:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<game>
<name>Your Project Name</name>
<version>1.0</version>
</game>
<launcher>
<selectionColor r="0" g="150" b="255" />
<musicPath>project m/launcher.brstm</musicPath>
<updateUrl>https://yourserver.com/update.xml</updateUrl>
</launcher>
</root>- name: Project name shown in UI
- version: Current version for updates
- selectionColor: Highlight color (RGB 0-255)
-
musicPath: BGM file (place in
(yourmod)/pf/sound/strm/) - updateUrl: Your update server URL
Open textures.tpl in BrawlCrate to edit the UI textures:
Main textures:
- logo - Main logo
- backgroundtile - Background pattern
- stylishm - Background image
Other textures: en_menu_, addon_ (buttons and icons)
Right-click a texture and select "Replace" to use your own image, then save the TPL file.