← Back to list

unity-mobile
by creator-hian
⭐ 3🍴 0📅 Jan 15, 2026
SKILL.md
name: unity-mobile description: Optimize Unity games for mobile platforms with IL2CPP, platform-specific code, and memory management. Masters iOS/Android deployment, app size reduction, and battery optimization. Use for mobile builds, platform issues, or device-specific optimization. requires:
- csharp-plugin:csharp-code-style
Unity Mobile Optimization
Overview
Mobile platform optimization for Unity focusing on iOS and Android performance, battery life, and deployment.
Foundation Required: unity-csharp-fundamentals (TryGetComponent, FindAnyObjectByType, null-safe coding)
Core Topics:
- IL2CPP compilation and optimization
- Memory management and profiling
- Touch input and mobile UI
- Battery life optimization
- App size reduction
- Platform-specific code
Quick Start
// Platform-specific code
#if UNITY_IOS
// iOS-specific code
Application.targetFrameRate = 60;
#elif UNITY_ANDROID
// Android-specific code
Application.targetFrameRate = 30;
#endif
// Touch input
if (Input.touchCount > 0)
{
Touch touch = Input.GetTouch(0);
if (touch.phase == TouchPhase.Began)
{
HandleTouch(touch.position);
}
}
Platform Constraints
- iOS: Metal rendering, App Store guidelines, 150MB initial download
- Android: Vulkan/OpenGL ES, API level fragmentation, 150MB initial
- Memory: 1-2GB low-end, 4-6GB high-end
- Thermal: Throttling after 5-10 minutes
Optimization Checklist
- ✅ Texture compression: ASTC (mobile), ETC2 (Android), PVRTC (iOS)
- ✅ Audio compression: AAC (iOS), Vorbis (Android)
- ✅ Reduce draw calls: <100 mobile, batching
- ✅ IL2CPP optimization: Strip engine code, managed stripping
- ✅ Battery: Lower target framerate, reduce update frequency
Best Practices
- Profile on device: Not just Unity Editor
- Minimize allocations: Reduce GC pressure
- Touch-friendly UI: 44pt minimum touch target
- Handle pause: OnApplicationPause lifecycle
- Test on low-end: Target lowest common denominator
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon