Skip to content
Ludens Ludens Ludens 0.3.0

Overview

Ludens is a Compose Multiplatform wrapper developed in Kotlin, designed to help you bring your RPG Maker MV & MZ projects to mobile devices. It takes your HTML5 game export and wraps it in a modern native application, giving you full control over configuration and deployment for both Android and iOS.

RPG Maker MV and MZ export games as HTML5 web applications. Traditionally, distributing these games to mobile users meant forcing them to play online via a browser, where games lack the native mobile experience that players expect — home screen icons, on-screen controls, performance settings, and proper standalone app distribution.

Ludens bridges this gap by providing a lightweight native shell built specifically for gaming. It loads your game in an optimized WebView and layers a complete set of mobile-specific, native UI functionalities on top.

Your RPG Maker game runs inside an Android WebView that is deeply integrated into the Compose Multiplatform UI. This WebView is specifically configured to reduce touch latency and optimize canvas rendering for games. It handles all core game logic and audio, while the native Compose layer seamlessly provides overlays, settings, and navigation without interrupting the engine.

Ludens provides a configurable on-screen control overlay:

  • Virtual Joystick — Directional input for character movement.
  • Buttons A, B, X, Y — Configurable action buttons mapped to keyboard events that the RPG Maker engine recognizes.
  • Opacity Control — Adjust the transparency of all on-screen controls.
  • Position Control — Reposition individual buttons to suit your layout preferences.

The built-in settings screen is organized into four sections:

SectionOptions
SystemTheme (Light / Dark / System), Language (System / English / Spanish)
ToolsMute Audio, Show FPS, Toggle WebGL, Button Positions
ControlsEnable/Disable, Adjust Opacity, Key Mapping
ActionsConfigurable Quick Actions Menu (Order, Enable/Disable)

The quick actions menu provides fast access to common toggles without entering the full settings screen:

  • Toggle Controls visibility
  • Toggle Audio Mute
  • Toggle FPS display
  • Toggle WebGL rendering
  • Open Settings

The order and visibility of these actions are fully configurable.

All application identity properties are configured through ludens.properties:

  • Application ID (e.g., com.yourorganization.game)
  • Version string and version code
  • Application name (shown in system settings)
  • Launcher name (shown under the home screen icon)
  • Immersive mode toggle

Game assets are managed through Compose Multiplatform’s resource system. You place your exported www folder in composeResources/files, and the build system handles the rest.

PlatformStatus
AndroidSupported (21+)
iOSComing Soon (iOS 13+)
ComponentVersion
Kotlin2.3.0
Compose Multiplatform1.9.3
Compose WebView2.0.3
Virtual Joystick1.0.0