• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Main repository of MikuMikuStudio


Commit MetaInfo

Revision55607b019d08aeebe35a6be5d6ede83e1142003b (tree)
Zeit2013-10-08 17:32:37
Autorkobayasi <kobayasi@pscn...>
Commiterkobayasi

Log Message

Add setMinFrameDuration

Ändern Zusammenfassung

Diff

--- a/engine/src/android/com/jme3/system/android/OGLESContext.java
+++ b/engine/src/android/com/jme3/system/android/OGLESContext.java
@@ -506,4 +506,12 @@ public class OGLESContext implements JmeContext, GLSurfaceView.Renderer
506506 return clientOpenGLESVersion;
507507 }
508508
509+ public int getMinFrameDuration() {
510+ return minFrameDuration;
511+ }
512+
513+ public void setMinFrameDuration(int minFrameDuration) {
514+ this.minFrameDuration = minFrameDuration;
515+ }
516+
509517 }