Hi Everyone!! Thank you sm for all the Downloads, just wanted to say that i'll be working on a few recolors of the cursor and then figuring out how to do gmcm menu soon :D If there's a color your interested in please reply to this if you can or just leave a comment somewhere with your preference much love!
Thank you for creating the mod, I'm about to try it out. :3 It looks very cute! The GMCM config will be very easy as it's a simple CP mod - here, this is a very basic setup you could use:
{ "Format": "2.6.1", "ConfigSchema": { "Purple": { "AllowValues": "true, false", "Default": "true", "Description": "I want to use the purple cursors!", "AllowBlank": false }, "Pink": { "AllowValues": "true, false", "Default": "false", "Description": "I want to use the pink cursors!", "AllowBlank": false } },
GMCM will do the rest for you. Otherwise, people can just edit the config file and pick a variant to their liking. Hope it's easily understandable, basically you'll configure the ConfigSchema field to your liking (maybe you'd like to add sections as well! I just made a simple variation, heh) and add a conditional in the Changes field. Hope it helps! <3
4 comments
PLANNED COLORS SO FAR
- Green
- Black
- Pink
Thank you for creating the mod, I'm about to try it out. :3 It looks very cute! The GMCM config will be very easy as it's a simple CP mod - here, this is a very basic setup you could use:
{
"Format": "2.6.1",
"ConfigSchema": {
"Purple": {
"AllowValues": "true, false",
"Default": "true",
"Description": "I want to use the purple cursors!",
"AllowBlank": false
},
"Pink": {
"AllowValues": "true, false",
"Default": "false",
"Description": "I want to use the pink cursors!",
"AllowBlank": false
}
},
"Changes":
[
{
"Action": "EditImage",
"Target": "LooseSprites/Cursors",
"FromFile": "assets/Dripcursorpurple.png",
"FromArea": { "X": 0, "Y": 0, "Width": 128, "Height": 32 },
"ToArea": { "X": 0, "Y": 0, "Width": 128, "Height": 32 },
"When": {
"Purple": "true"
}
},
{
"Action": "EditImage",
"Target": "LooseSprites/Cursors",
"FromFile": "assets/Dripcursorpink.png",
"FromArea": { "X": 0, "Y": 0, "Width": 128, "Height": 32 },
"ToArea": { "X": 0, "Y": 0, "Width": 128, "Height": 32 },
"When": {
"Pink": "true"
}
}
]
}
GMCM will do the rest for you. Otherwise, people can just edit the config file and pick a variant to their liking. Hope it's easily understandable, basically you'll configure the ConfigSchema field to your liking (maybe you'd like to add sections as well! I just made a simple variation, heh) and add a conditional in the Changes field. Hope it helps! <3