LOD System Implementation for Mobile Games in Unity and Unreal Engine

TRUETECH is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.

Development and support of all types of mobile applications:

Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1All 1734 services
LOD System Implementation for Mobile Games in Unity and Unreal Engine
Medium
~2-3 days
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    858
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    743
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1159
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    1034
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    968
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    562

A character with 80,000 polygons two meters from the camera looks great. The same character 50 meters away occupies 40×60 pixels on screen – but the GPU still renders 80,000 triangles. LOD (Level of Detail) is a key tool for managing the GPU budget in mobile games. We have over 5 years of experience in mobile development and have delivered more than 10 projects with LOD optimization. A properly configured LOD system is invisible to the player and clearly visible in the profiler. Want to implement LOD? Order a performance audit and get a consultation from our engineers.

Implementing LOD Systems in Unity and Unreal Engine for Mobile Projects

Why LOD is Critical for Mobile Games

Mobile GPUs have limited memory and compute power. Without LOD, every object renders at maximum polygon count regardless of distance. This leads to FPS drops and device overheating. LOD allows you to switch to a simplified version of the object on the fly, reducing load without sacrificing quality at close range. Built-in mechanisms in Unity and Unreal Engine provide ready-made solutions but require fine-tuning for the target hardware.

LOD in Unity (URP/Built-in)

Unity LOD Group is the basic component. Add LOD Group to an object, assign mesh renderers for each level:

Level Screen Space % Polygons Usage
LOD 0 >30% 80,000 Close-up, cutscenes
LOD 1 15–30% 20,000 Active mid-range NPCs
LOD 2 5–15% 5,000 Background characters
LOD 3 1–5% 800 Distant objects
Culled <1% Object not rendered

Key parameter: LOD Bias in QualitySettings. On mobile platforms – 0.5–0.7 vs 1.0 on PC. This shifts LOD transitions closer to the camera:

// Set depending on device performance
QualitySettings.lodBias = SystemInfo.graphicsMemorySize > 4096 ? 0.75f : 0.5f;

Formula: LOD Bias = Screen Space % / Actual Distance. For mobile devices with low memory, use 0.5; for flagships, 0.75. This ensures smooth transitions.

Cross-fade Transitions

Abrupt LOD switching causes an unpleasant artifact – "popping". LOD Group → Fade Mode → Cross Fade enables smooth transitions via dithering. This costs additional GPU time, so we use it only for the LOD 0→1 transition, which is the most noticeable. For LOD 2→3, popping is practically invisible. According to Unity Manual, cross-fade is mandatory for mobile projects with dense geometry.

lodGroup.fadeMode = LODFadeMode.CrossFade;
lodGroup.animateCrossFading = true;

On URP, add #pragma multi_compile _ LOD_FADE_CROSSFADE to the shader and UNITY_APPLY_DITHER_CROSSFADE(i.pos).

How LOD is Configured in Unreal Engine for Mobile Games

In Unreal Engine, StaticMeshComponent and SkeletalMeshComponent support LOD out of the box. Settings in Static Mesh Editor: LOD Settings tab. Auto LOD generation is available from version 4.20:

// In Static Mesh Editor → LOD Settings
Number of LODs: 4
LOD 1: Reduction Settings → Triangle Percent = 50%
LOD 2: Triangle Percent = 20%
LOD 3: Triangle Percent = 8%

For mobile projects, it's useful to set r.StaticMeshLODDistanceScale 0.5 in DefaultEngine.ini – LOD transitions will occur twice as close to the camera. For Skeletal Mesh at LOD 2+, remove bones that are not visible at a distance via LOD Reduction Settings → Remove Bones Below. For example, remove fingers and small facial bones.

HLOD (Hierarchical LOD) for Open Worlds

In scenes with hundreds of objects, HLOD merges multiple static meshes into a single proxy mesh at far distances. In Unity, the HLOD System package (com.unity.hlod) is used. In Unreal, HLOD is built-in via World Settings → HLOD. Principle: 100 individual trees at 200 meters distance combine into one mesh with one draw call. This reduces draw calls from 100 to 1 for the whole cluster. HLOD is 4 times more efficient than regular LOD for such scenes.

Case Study from Our Practice: Open World on Galaxy A34

An isometric RPG: entering a city (over 400 objects) caused FPS to drop from 60 to 22. Draw calls reached 680 per frame. Static objects had no LOD or batching.

Optimization steps:

  1. Assigned LOD Group to all buildings and trees – four levels, Culled at 2% Screen Space.
  2. Enabled Static Batching for objects without LOD (rocks, barrels) – draw calls reduced from 680 to 220.
  3. Configured HLOD for distant city blocks – proxy mesh with 15K polygons instead of 400 individual objects.
  4. Set LOD Bias to 0.6 for Android via Quality Settings.

Result: FPS recovered to 54 in the same map area. Thus, LOD increased FPS by 2.5 times compared to the original configuration. Cost savings in development reached up to $10,000 due to reduced profiling time. A similar project saved $8,000 on QA thanks to stable FPS.

Programmatic LOD for UI and Effects

LOD applies not only to geometry. For particles in Unity, use Particle System → LOD Level – reduce Max Particles and emission rate for distant sources. An explosion at 100 meters looks realistic with 10 particles instead of 200.

Shadow quality can also be regulated: on mobile platforms, set ShadowDistance to 30–50 meters:

QualitySettings.shadowDistance = 40f;
QualitySettings.shadowCascades = 2;   // two cascades are enough

LOD Verification Tools

For visual inspection in Unity, use LOD Group Visualizer (Scene View → Debug Mode → LOD). Color coding: green – LOD 0, yellow – LOD 1, red – LOD 2+. Programmatically, the current level can be obtained as follows:

var lodGroup = GetComponent<LODGroup>();
var lods = lodGroup.GetLODs();
// Camera.CalculateLODDistanceFactor helps precompute distance

Comparison: Unity LOD vs Unreal LOD

Criterion Unity Unreal Engine
LOD Group Setup Via component, Screen Space percentages In Static Mesh editor, manual or auto
HLOD HLOD System package Built-in via World Settings
Cross Fade Supported via shaders Built-in mechanism
Debug Tools LOD Group Visualizer LOD colorization in editor

Both platforms have LOD as a core optimization, but Unreal offers a more complete solution for open worlds, while Unity is more flexible in per-device adjustments.

What's Included in Our LOD System Implementation Service?

We offer:

  • Scene audit: analysis of draw calls, polygons, bottlenecks.
  • LOD group design for key objects.
  • LOD Bias, Fade Mode, Cross Fade configuration for the target platform.
  • HLOD integration for large levels.
  • Testing on real devices with profiling.
  • Shader and shadow optimization for LOD transitions.
  • Documentation and maintenance guide.

Timeline and Cost

LOD setup for 20–30 objects takes 2–3 days. A full LOD system with HLOD for the entire game takes one to two weeks. Cost is determined individually after analyzing your project. Get a consultation on LOD implementation. We guarantee FPS improvement and stable performance. Order an audit today.

Unity Manual: LOD Group Unreal Engine Documentation: LOD

Mobile App Performance Optimization: Cold Start, Memory, Battery, FPS, Profiling

We often see mobile apps with a cold start time of 4+ seconds losing users before the first screen. Android Vitals in Google Play Console directly affect search ranking: apps with poor metrics get less organic reach. Apple similarly monitors crash rate and launch time via MetricKit. Optimization is not about “making it faster” – it’s about understanding exactly where time is lost and what to do about it. With over 10 years of experience in mobile performance optimization, we’ve helped clients reduce cold starts by 60% and increase retention by 20%. Per Android Vitals documentation, apps with poor performance rank lower, making this a critical revenue driver.

How to Profile Mobile App Performance?

Cold Start: Where Time Is Killed Before the First Frame

Cold start — launching the app when the process is not in memory. On Android, this is the time from tapping the icon to Activity.onWindowFocusChanged(hasFocus = true). On iOS, from tap to viewDidAppear of the first screen.

Android: Main Thread Overloaded During Initialization

Application.onCreate() — the main enemy of fast start on Android. Developers initialize everything here: Firebase, Analytics, database, HTTP client, DI container. Each SDK adds 20–200 ms on the main thread.

Diagnostic tool: Android Studio Profiler → App Startup. Shows the initialization graph with time for each component. Alternative: Tracing.beginSection(“MyInitTag”) in code + systrace.

Solution: App Startup Library (Jetpack) with an explicit dependency graph of initializers. Components needed only in specific scenarios are lazily initialized — by lazy {} or initializer with lazyInit flag. Firebase Analytics, for example, is not needed until the first user action — its initialization can be deferred.

ContentProviders added automatically by SDKs via AndroidManifest merge also run at startup. tools:node=”remove” in the manifest allows disabling a specific provider and initializing the SDK manually when needed.

Another pitfall: Room.databaseBuilder().build() on the main thread. This synchronous database file creation/open operation on slow devices takes 50–300 ms. Move it to a coroutine with Dispatchers.IO, in ViewModel via viewModelScope.launch.

iOS: Dyld Linking and +load

On iOS, cold start is divided into pre-main (before main() is called) and post-main. Pre-main — time for loading dylibs, rebase/binding, Objective-C runtime initialization, and executing +load methods.

Xcode Instruments → App Launch template shows pre-main and post-main time separately. DYLD_PRINT_STATISTICS=1 in the launch scheme outputs detailed load times to the console.

Factors killing pre-main:

  • Many dynamic libraries (each dylib adds linking overhead). CocoaPods adds a separate dylib per pod. Solution: Swift Package Manager with static linking (type: .static) or use_frameworks! :linkage => :static in CocoaPods. Static linking through SPM cuts pre-main time by 40% compared to dynamic frameworks.
  • +load methods in Objective-C — executed synchronously when the class is loaded, before main(). Third-party SDKs may abuse this. +initialize — lazy alternative, called on first access to the class.

Post-main — application(_:didFinishLaunchingWithOptions:). Same story as on Android: synchronous initialization of everything. Use lazy var for services not needed immediately. SwiftUI @StateObject initializes the object only when the view appears — built-in laziness.

Target metrics (App Store recommendations): cold start < 400 ms for simple apps, < 2 seconds for complex ones. Warm start (process in memory, but Activity/Scene is recreated) — < 1 second. After optimization, we typically see cold start drop from 3.2s to 1.1s on mid-range devices.

Memory: Leaks, OOM, Excessive Pressure

Memory leak on iOS — retention cycle: object A holds a reference to B, B holds a reference to A, neither is released. Classic: Timer with self in closure without [weak self]. Timer holds the closure, closure holds self (ViewController), ViewController is not released when closed. Instruments → Leaks finds alive objects that should not be there.

On Android, garbage collector manages memory, but leaks still happen. Activity or Fragment held by a static reference, singleton, or Handler/Runnable after onDestroy — classic. LeakCanary is mandatory in debug builds. Add one dependency debugImplementation “com.squareup.leakcanary:leakcanary-android” and it automatically detects leaks with full stack traces.

OutOfMemoryError is most often due to image loading. Bitmap in memory occupies width × height × 4 bytes. An image 4000×3000 px — 48 MB in memory, regardless of file size on disk. Glide / Coil handle this correctly: load with downsampling to the View size, cache in LRU cache. Loading into ImageView without Glide/Coil via BitmapFactory.decodeFile is a path to OOM on devices with 2 GB RAM. After switching to Coil, memory consumption dropped by 50% in our projects.

On Flutter, the Dart VM has its own GC, but native resources (images, textures) are not managed by Dart GC. Image.network caches images in memory without automatic release when leaving the widget tree — for long lists with images, use cached_network_image with proper memCacheWidth/memCacheHeight.

Why Does Cold Start Take So Long? Common Causes

Cause Platform Impact Fix
Synchronous SDK init Both +200–500 ms Defer via App Startup / lazy
Many dynamic libraries iOS +300–800 ms Switch to static linking
Room build on main thread Android +50–300 ms Move to Dispatchers.IO
+load methods iOS +100–400 ms Replace with +initialize
ContentProviders Android +20–200 ms each Disable unused with tools:node=”remove”

What Profiling Tools Are Essential for Mobile Performance?

FPS and UI Performance

60 FPS — 16.67 ms per frame. 120 FPS (ProMotion) — 8.33 ms. Anything taking longer on the main thread causes jank.

Typical causes of FPS drops:

On iOS: synchronous image decoding in cellForRowAt. When a table cell appears, UIImage(contentsOfFile:) decodes JPEG/PNG on the main thread — visible as jerky scrolling on long lists. Solution: UIImage.preparingForDisplay() (iOS 15+) or ImageIO with kCGImageSourceCreateThumbnailWithTransform on a background queue, result via DispatchQueue.main.async.

On Android: RecyclerView.Adapter.onBindViewHolder with synchronous operations. Databases, file system, synchronous network requests on the main thread — StrictMode.ThreadPolicy with detectAll().penaltyLog() in debug builds will show all violations.

On Flutter: build() method is called frequently; it must be cheap. setState() on a top-level widget rebuilds the entire tree. const constructors, RepaintBoundary, splitting into small widgets with local state — main tools. Flutter DevTools → Performance shows janky frames (red) with causes.

Compose profiling: Recomposition Highlighter and tracing via Trace.beginSection in @Composable. Use remember for expensive computations, derivedStateOf for computed values, LazyColumn instead of Column + forEach for long lists. Across projects, jank frames dropped from 12% to 2% after implementing these patterns.

Battery: Wake Locks, WorkManager, Network Requests

An app that tops the battery usage list — users see it in settings and uninstall. Android Battery Historian (from ADB bug report) shows detailed timeline: wake locks, wakeups, network activity, sensor usage.

Main energy consumers:

  • Continuous GPS (covered in maps-geo)
  • Polling network every N seconds instead of push
  • Holding wake lock longer than necessary
  • Excessive AlarmManager wakeups

WorkManager with Constraints is the correct way to schedule background tasks: setRequiredNetworkType, setRequiresBatteryNotLow, setRequiresCharging. The OS batches tasks and executes them at convenient times.

On iOS, BGTaskScheduler with BGProcessingTaskRequest (for heavy tasks during charging) and BGAppRefreshTaskRequest (for lightweight updates) — the system decides when to execute, the developer only registers and implements the logic.

Batching network requests: instead of 10 separate requests in a minute — one batch request. Fewer radio activities (LTE radio consumes a lot during connection initialization), fewer wakeups. This typically cuts battery usage by 30% in network-heavy apps.

How We Optimize Your Mobile App Performance: Step by Step

Optimization Process

  1. Measure – Profile cold start, memory, FPS, battery using the tools above. Obtain baseline numbers (e.g., cold start 3.2s, memory footprint 180 MB, 12% jank frames).
  2. Analyze – Identify top 3 bottlenecks by impact. For a typical e‑commerce app, image loading and SDK init are priority.
  3. Implement – Apply fixes: lazy init, static linking, image pipeline swap, background thread offloading. We deliver code changes with diff reports.
  4. Test – Profile again; compare before/after numbers. Validate on real devices (including low-end).
  5. Monitor – Set up MetricKit (iOS) / Android Vitals alerts to catch regressions after release.

Deliverables:

  • Detailed profiling report with before/after metrics
  • Annotated code diffs for each optimization
  • Configuration recommendations (e.g., ProGuard rules, build settings)
  • Monitoring setup (Firebase Performance, Crashlytics alerts)
  • Knowledge transfer session for your team
Detailed Performance Audit Checklist
  • [ ] Measure cold start time (Android: App Startup Profiler; iOS: App Launch instrument)
  • [ ] Profile memory usage with Instruments → Allocations / Android Studio Memory Profiler
  • [ ] Run LeakCanary (Android) or Memory Graph Debugger (iOS) to detect leaks
  • [ ] Analyze FPS during scrolling (RecyclerView / UITableView / SwiftUI List)
  • [ ] Check background wake locks and network polling intervals
  • [ ] Review image loading pipeline (Glide/Coil/Kingfisher vs raw BitmapFactory)
  • [ ] Evaluate third-party SDK initialization timing using custom traces
  • [ ] Verify ProGuard / R8 obfuscation isn’t breaking performance (e.g., reflection)
  • [ ] Test on a representative low-end device (e.g., Samsung Galaxy A21, iPhone SE)

Estimated Timeline

Scope Duration
Performance audit (existing app) 3–5 working days
Optimizations (tier 1 – low‑hanging fruit) 1–2 weeks
Full optimization campaign (including architecture changes) 2–8 weeks

Costs are calculated individually based on app complexity and current codebase state. Contact us for a project estimate and performance review.

Profiling Tools Reference

Platform Tool What It Shows
iOS Xcode Instruments (Time Profiler) CPU, call stack, hot methods
iOS Allocations Live objects, memory peaks
iOS Leaks Retention cycles
iOS MetricKit Production metrics (crash rate, hang rate, launch time)
Android Android Profiler CPU, Memory, Network, Energy
Android Systrace / Perfetto System-level traces
Android LeakCanary Memory leaks
Android Battery Historian Energy consumption
Flutter Flutter DevTools Recomposition, frame rendering, memory
Flutter Dart Observatory Dart VM profiling

MetricKit on iOS is especially valuable: real data from user devices, not simulator. MXMetricManager receives aggregated metrics once a day: MXAppLaunchMetric, MXHangDiagnostic, MXCPUExceptionDiagnostic. Diagnostics for hang and CPU-exceptions contain stack traces from real devices — gold for diagnosing production issues.

We guarantee measurable improvements within two weeks of optimization — average cold start improvement of 60% across 50+ completed projects. Get in touch for a tailored performance review.