forum

Osu Skin Editor Tool

posted
Total Posts
8
Topic Starter
Shigekiezi
Here is something I have been working on just to practice programming.

Is there any point in developing this any further, like would anyone actually use it?

Any suggested features or an idea what i should make of this?

"To make the making of skins easier for the avereage osu player. And perhaps add library of components to choose from. Or perhaps let people swap out components from their other skins.
Basically i just want to make it easier while also introducing new features maybe, i dont really have any idea where im going with this. If you think this is a waste of time please let me know.
EDIT:
Things to make it easier like a color picker for combo colors etc."

Some media;



Rilene
Of course we (some) will use it.
Once completed and has useful features.
Flanster
Give this a look.
t/381311

It's some code snippets for detecting the osu! folder, Java being on the list.
Topic Starter
Shigekiezi

LoliFlan wrote:

Give this a look.
t/381311

It's some code snippets for detecting the osu! folder, Java being on the list.
Thanks for the info.
I have checked it out and the method provided there requires me to add a library of 1.7mb, I think thats rather much just for 1 method.

If osu is not located in the local appdata folder you can always use the locate skin folder and it will display a file chooser where you can locate it urself.

This is my method (open for any improvements)

	public static String locateOsu() {
String dataFolder = System.getenv("LOCALAPPDATA");
for (final File fileEntry : new File(dataFolder).listFiles()) {
if (fileEntry.getName().equalsIgnoreCase("osu!")) {
return fileEntry.getAbsolutePath() + "\\Skins\\";
}
}
return "";
}
Flanster
Not everyone has osu! installed in the default location so your default method isnt very reliable.
Plus 1.7mb dll for one method is a bit eh but at the cost of convinience, would rely on it.
Sarahkuai
this is only for osu standart?, too bad :(
OtakGravure
wow nice appp
Syperek
Cool program, thanks :D
Please sign in to reply.

New reply