This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public TempBodyPool(final World world, final Level level) { | |
| toastParticles = new Pool<ToastParticle>() { | |
| @Override | |
| protected ToastParticle newObject() { | |
| return new ToastParticle(world, 1, 1f, 1f, 1, 0.5f, 0.2f); | |
| } | |
| }; | |
| cerealParticles = new Pool<CerealParticle>() { | |
| @Override | |
| protected CerealParticle newObject() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apply plugin: "java" | |
| apply plugin: "application" | |
| sourceCompatibility = 1.6 | |
| mainClassName = "me.tomski.levelediting.LevelEditor" | |
| sourceSets.main.resources.srcDirs = [file("../desktop/assets").getAbsolutePath()] | |
| // idea doesn't like relative paths outside of content root... | |
| tasks.ideaModule.doFirst { |
NewerOlder