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
scalaVersion := "2.11.8" | |
resolvers += Resolver.sonatypeRepo("snapshots") | |
resolvers += "JCenter" at "https://jcenter.bintray.com" | |
resolvers += "Official Repo" at "https://updates.jmonkeyengine.org/maven/" | |
resolvers += "Nifty" at "http://nifty-gui.sourceforge.net/nifty-maven-repo" |
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
VM Options using Windows shared memory for local-attach: | |
-agentlib:jdwp=transport=dt_shmem,server=y,suspend=n,address=javadebug | |
or using sockets for remote attach | |
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005 |
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
object JavaFXExecutionContext { | |
implicit val javaFxExecutionContext: ExecutionContext = ExecutionContext.fromExecutor(new Executor { | |
def execute(command: Runnable): Unit = { | |
Platform.runLater(command) | |
} | |
}) | |
} | |
... |
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
package event | |
import akka.event.ActorEventBus | |
import akka.event.SubchannelClassification | |
/** | |
* classifiers for the sim event dispatch | |
*/ | |
class SimEventKind() | |