Create a battle
Setup
Save As the BattleTemplate Scene
In Project window, go to Modding → _InfinityModding → ModdingRoot and double click the battle template scene names Modding_BattleTemplate.
Then go to FILE -> and click Save As, set the name you want, and make sure to save it INSIDE the “Mod 1” folder we just created.
The “Mod 1” folder must contain all assets of your mod. So save the scene there.
Creating a charting file
A battle needs a “Chart Data”, in order to create a “Chart Data” we need two things:
-The Charting file (the data about the notes)
-The song clip
Open the Battle Editor
To create a charting file, we need to open the battle editor. For that open the game and go to Custom Battles and click Battle Editor to open it. For that once again open Everhood 2, go to Custom battles and and click Tools.
Open the Moonscraper Everhood Ultimate folder and double click the executable
Here is how it should look:
Setting up the Chart Data
Once the chart file exported, let's take a look on how to generate the “Chart Data”.
Set the parametest for Chart Data Object
Go to your Hierarchy windows and click the Game Object “Chart Data”
If you check your Inspector window, you should see a component called “CB_Chart” Drag and drop our charting file inside the Chart field, and our song clip inside the Song field.
Click the three dots in the CB_Chart component and click Generate Chart Data
Now your Chart Data Game Object in the Hierarchy windows should look like this
If you click the arrows , you can expand and see the sections and notes in details
Now you are ready to hook up events to your Sections and Notes!
Attaching Events to Notes and Sections
Events are what will make your battle alive, with events you can control every visual aspect of your battle. Check the Event Commands section in order to get info on what each event does!
Set Events to Notes
Click any Note - ID = x “Event” Game Object inside your chart Data located in the Hierarchy windows.
In the Inspector you will see a big button “Add Command Event”
When you click it you will see a dropdown will multiple events to select, each on their own category
When clicked, the command should now appear in the Inspector of that “Event”
Set Events To Sections
Like setting events to Notes, click any Section - x Game Object inside your chart Data located in the Hierarchy windows.
In the Inspector you will see a big button “Add Command Event”
When you click it you will see a dropdown will multiple events to select, each on their own category
When clicked, the command should now appear in the Inspector of that “Event”
Last updated