diff --git a/desktop/resources/packed/pack.png b/desktop/resources/packed/pack.png index 6d047f58..6f9eb06c 100644 Binary files a/desktop/resources/packed/pack.png and b/desktop/resources/packed/pack.png differ diff --git a/desktop/resources/packed/pack2.png b/desktop/resources/packed/pack2.png index cc22af27..84e9246b 100644 Binary files a/desktop/resources/packed/pack2.png and b/desktop/resources/packed/pack2.png differ diff --git a/desktop/resources/packed/pack3.png b/desktop/resources/packed/pack3.png index 590fa548..db2c5a7a 100644 Binary files a/desktop/resources/packed/pack3.png and b/desktop/resources/packed/pack3.png differ diff --git a/ios/project.clj b/ios/project.clj index ff67fe1e..0868f941 100644 --- a/ios/project.clj +++ b/ios/project.clj @@ -17,11 +17,7 @@ :java-source-paths ["src/java"] :plugins [[lein-fruit "0.2.4-SNAPSHOT"]] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] - :ios {:robovm-opts ["-forcelinkclasses" "advent.**:clojure.**:com.badlogic.**:play_clj.**:org.apache.log4j.**:java.util.logging.**" - "-libs" "libs/libObjectAL.a:libs/libgdx.a" - "-frameworks" "UIKit:OpenGLES:QuartzCore:CoreGraphics:OpenAL:AudioToolbox:AVFoundation" - "-resources" "../desktop/resources/**" - ] + :ios {:robovm-opts ["-config" "robovm.xml"] :robovm-path "/Users/brycecovert/Downloads/robovm-2.1.0/" :version 2.1} :aot :all diff --git a/ios/src/java/advent/core/IOSLauncher.java b/ios/src/java/advent/core/IOSLauncher.java index e7d8b8e0..5f9f62ae 100644 --- a/ios/src/java/advent/core/IOSLauncher.java +++ b/ios/src/java/advent/core/IOSLauncher.java @@ -14,8 +14,8 @@ import org.robovm.apple.glkit.GLKViewDrawableDepthFormat; public class IOSLauncher extends IOSApplication.Delegate { protected IOSApplication createApplication() { IOSApplicationConfiguration config = new IOSApplicationConfiguration(); - config.colorFormat = GLKViewDrawableColorFormat.SRGBA8888; - config.depthFormat = GLKViewDrawableDepthFormat._24; + // config.colorFormat = GLKViewDrawableColorFormat.SRGBA8888; + // config.depthFormat = GLKViewDrawableDepthFormat._24; config.orientationPortrait = false; config.orientationLandscape = true; config.preferredFramesPerSecond = 30;