利用者:AlexK/Gsoc2012/Game dev guide for Android

提供: wiki
< 利用者:AlexK‎ | Gsoc2012
2012年8月21日 (火) 03:50時点におけるwiki>AlexKによる版 (Created page with "Here some advice on porting games to Android * Switch graphic GLSL ** We only support GLSL for now. * Android uses VBO, independent of preferences ** But you should choose VBO...")
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先: 案内検索

Here some advice on porting games to Android

  • Switch graphic GLSL
    • We only support GLSL for now.
  • Android uses VBO, independent of preferences
    • But you should choose VBO for future
  • In shading disable most GLSL shaders except Light and Shaders (or some other)
    • Most of them is overkill for mobile graphics
    • Decreasing complexity of shaders on large screen resolution significantly improves FPS
  • Do not use modifiers except for armature
    • They won't rendered on Android because it relays on other drawing method which will be implemented in the future with Blender port
    • They cannot be cached in VBO
  • Simplify micro geometry
    • Use textures instead
  • Chop down one big object which cannot be viewed fully (like background/ground)
    • in few smaller
    • This will allow for geometry culling and will improve performance