You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: LvdSpec/README.md
+27-1
Original file line number
Diff line number
Diff line change
@@ -12,4 +12,30 @@ You'll need:
12
12
13
13
## Usage
14
14
15
-
When booting for the first time, the program will ask you to locate ArcExplorer, Yamlvd and Parcel. This is so we can retrieve the original groundconfig.prc, parse level data, and export the changes you make as a patch file. You'll be greated with a blank canvas, with most of the settings greyed out (as there is no level loaded). Go to File>Load Stage Collision FolderThis program will also remember the last used workspace on launch. Make sure your mod has a `stage/[stage_name]/normal/param` folder, and that folder should have an lvd or yaml file in it. If you don't have a yaml file, this program can run yamlvd for you. If yamlvd doesn't work with this stage (ie WarioWare), you can manually enter data for the camera,blastzone,and stage radius data.
15
+
When booting for the first time, the program will ask you to locate ArcExplorer, Yamlvd and Parcel. This is so we can retrieve the original groundconfig.prc, parse level data, and export the changes you make as a patch file. You'll be greated with a blank canvas, with most of the settings greyed out (as there is no level loaded). Go to File>Load Stage Collision File and select a `.yaml` file to load. If your stage doesn't have a yaml file, you can select a `.lvd` file and this program will run yamlvd for you. If yamlvd doesn't work with this stage (ie Final Destination, WarioWare), you can manually enter data for the camera,blastzone,and stage data.
16
+
17
+
Edit the Steve LVD Settings values as you see fit. You can also use the Wizard button to automatically set these values. The Wizard will require that your Stage Data values are accurate, so double check to make sure these values make sense.
18
+
19
+
When you're finished, go to File>Export Patch File. This will create a patch file in whichever mod directory you are currently in under stage/common/shared/param. The name will be groundconfig + the name of the yaml file. The program will read from this file whenever you load the same yaml file again. Make sure you rename the new patch file after moving it to your mod on your SD Card. All changes will be saved to the groundconfig.prc in the LVDSpec folder, so if you're making a large mod pack, you might want to use this file instead of trying to combine several different patch files.
20
+
21
+
## Terms
22
+
23
+
||
24
+
| :- |
25
+
|**Steve LVD Settings**|
26
+
|**material**: Material type of the weakest block |
27
+
|**origin**: Used to offset the steve grid. Should be related to Stage Radius and FloorY|
28
+
|**cell sensitivity**: A value between 0 and 1. Not sure what it does|
29
+
|**line offset**: A value between 0 and 10. Not sure what it does |
30
+
|**Side/Top/Bottom**: Distance from Camera where Steve cannot build a block |
31
+
|**Camera Boundaries**|
32
+
|**Left/Right/Top/Bottom**: Boundaries for the Camera of the stage |
33
+
|**Center**: Center X and Y positions of the camera |
34
+
|**Blastzone Boundaries**|
35
+
|**Left/Right/Top/Bottom**: Boundaries for the Blastzone of the stage |
36
+
|**Stage Data**|
37
+
|**Radius**: Width of the stage divided by 2 |
38
+
|**Top**: Highest platform; often the highest spawn point |
39
+
|**Bottom**: Lowest part of the main stage. Walled stages should have their Bottom value lower than their Camera.Bottom value |
40
+
|**FloorY**: Y position of the lowest floor of the stage, often the lowest spawn point |
41
+
|**Origin**: Often 0,0; some stages may be shifted up by 200 to avoid hardcoded vertices. Set this to a multiple of 10 so that the Steve Grid shows properly |
if (root.modName=="common"andlen(modsubfolder)>1):
249
+
root.modName=os.path.basename(modsubfolder[1])
250
+
251
+
print ("Selected mod: "+root.modName )
252
+
if (root.modType=="fighter"):
253
+
GetModSkins()
254
+
if (root.modName!=""):
198
255
getUI()
256
+
#GetUI exists system on completion
199
257
200
258
#Create UI for manually if no stage/fighter name was found
201
-
messagebox.showinfo(root.title(),"Could not find stage associated with this mod, please type in the stage name manually on the next window")
259
+
defmanualUI():
260
+
root.modName=root.e.get()
261
+
root.withdraw()
262
+
if (root.modName==Noneorroot.modName==""):
263
+
root.destroy()
264
+
sys.exit("no input")
265
+
getUI(True)
266
+
267
+
messagebox.showinfo(root.title(),"Could not find "+root.modType+" associated with this mod, please type in the "+root.modType+" name manually on the next window")
202
268
root.deiconify()
203
-
root.label=Label(root, text="Type in the name of the stage you want to search (ie battlefield_s)", anchor=N)
269
+
root.label=Label(root, text="Type in the name of the "+root.modType+" you want to destination (ie ridley,battlefield_s,etc)", anchor=N)
0 commit comments