forum

Changing key Colors on Mania

posted
Total Posts
2
Topic Starter
Kanayaay
Hello,I will cut to the chase, I play on Mobile and use my Dualshock 4.

However I get confused on 7K, I need to find a way to exchange the 4th and 6th keys Colors, how do I go about that?

I have some experience skinning and with Acode (Notepad++ esque editor for Android)

Any help would be appreciated


Ryu Sei
For that you need to point out every sprites used for the notes and the keys. Here's an example:
Code
[Mania]
Keys: 7

// Notes

NoteImage0: notes/B
NoteImage1: notes/R
NoteImage2: notes/B
NoteImage3: notes/Y
NoteImage4: notes/B
NoteImage5: notes/R
NoteImage6: notes/B

NoteImage0H: notes/BH
NoteImage1H: notes/RH
NoteImage2H: notes/BH
NoteImage3H: notes/YH
NoteImage4H: notes/BH
NoteImage5H: notes/RH
NoteImage6H: notes/BH

NoteImage0L: notes/BL
NoteImage1L: notes/RL
NoteImage2L: notes/BL
NoteImage3L: notes/YL
NoteImage4L: notes/BL
NoteImage5L: notes/RL
NoteImage6L: notes/BL

NoteImage0T: notes/BH
NoteImage1T: notes/RH
NoteImage2T: notes/BH
NoteImage3T: notes/YH
NoteImage4T: notes/BH
NoteImage5T: notes/RH
NoteImage6T: notes/BH

// Keys
KeyImage0: key-1
KeyImage1: key-2
KeyImage2: key-3
KeyImage3: key-3
KeyImage4: key-3
KeyImage5: key-2
KeyImage6: key-4

KeyImage0D: key-1p
KeyImage1D: key-2p
KeyImage2D: key-pinkp
KeyImage3D: key-sp
KeyImage4D: key-pinkp
KeyImage5D: key-2p
KeyImage6D: key-4p

Refer to your skin folder on which file corresponds which color. You don't need to type the extension. The directory is relative based on your current skin, so if you have key-yellow.png in the main directory of your current skin, you only need to type key-yellow to specify the sprite. The main thing you want to look is (from zero-based index):
  1. NoteImage# determines the note object sprites. Additionally, when added suffix H, L, or T, it will specify which file used for consecutively long note head, long note body, and long note tail.
  2. KeyImage# determines the key sprites. Additionally, when added suffix D, it will specify which file used for pressed state of the key.
Please sign in to reply.

New reply