LaunchKit · 2026
Back to Skills

android-3d-developer

Gamingv0.1.0

Help build and optimize 3D games and interactive experiences on Android, using engines and frameworks.

0
357 downloads
by @tippyentertainment

Setup & Installation

openclaw skills install @tippyentertainment/android-3d-developer

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install android-3d-developer

What This Skill Does

Assists with building and optimizing 3D games and interactive experiences on Android. Covers engine-specific workflows (Unity, Unreal, Godot) and native graphics APIs (OpenGL ES, Vulkan), with attention to Android's performance constraints, lifecycle handling, and Play Store packaging.

Combines engine-level and Android-platform knowledge in one skill, so you get advice on build settings, permissions, and lifecycle that generic engine docs skip.

When to use it

  • Optimizing a Unity game for mid-range Android devices
  • Diagnosing thermal throttling in a mobile 3D game
  • Setting up Vulkan rendering pipeline for Android NDK
  • Handling Android lifecycle events (pause, resume, GL context release) in a game
  • Packaging and signing an AAB for Play Store submission

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: My Unity Android game runs fine on flagship devices but stutters badly on mid-range phones

AGENT
  1. 1Ask which Unity version and target Android API level are in use
  2. 2Review quality settings and suggest lowering shadow resolution, texture compression, and draw call budgets
  3. 3Recommend enabling static and dynamic batching and adding LODs to high-poly meshes
  4. 4Advise using Android Studio CPU/GPU profiler and Unity Profiler to identify bottlenecks
  5. 5Suggest ABI splits and IL2CPP scripting backend for smaller, faster builds
OUTPUT

A prioritized list of quality and build settings changes with expected impact on mid-range hardware