Luna Engine MV (Visustella)

From Yanfly.moe Wiki
(Redirected from Luna Engine MV)
Jump to navigation Jump to search

Welcome to the wiki! This is where you can find resources from Yanfly.moe, Ækashics.moe,
VisuStella, Caz Wolf, Fallen Angel Olivia, Atelier Irina, and other affiliated content creators.



Download

System

This is a plugin created for RPG Maker MV.

For help on how to install plugins, click here.

For help on how to update plugins, click here.

Got errors with your RPG Maker MV plugin? Click here.


Masterarbeit Writer

What is Luna Engine?

Luna Engine MV is a tool created for RPG Maker MV (RPGツクールMV) to give you the freedom to manipulate RPG Maker MV's default GUIs and modify them according to your own vision! Luna Engine can also be useful for seasoned programmers, providing a solid core base you can build up on.

The engine is only compatible with RMMV 1.6.1 and above!

The Luna Engine utilizes new features from the latest NWJS that came with the latest RMMV update. This includes ES6 syntax. We cannot guarantee that scripts under 1.5.x will work properly.

Installation Instructions

It is important to remember that Luna Engine only works on RPG Maker MV 1.6.1 and latest versions. It will not work with older versions of RPG Maker. This is because Luna Engine is using ES6 functions which requires the latest Nodejs version.

Before you Start

Install a Text IDE. This is required to prevent any errors on the user side as Text IDEs highlight important syntax. More importantly, it gives you a visual cue in regards to spacing. YAML files are sensitive to spacing (similar to Python) so this is a necessity. Here are some recommended free IDEs you can download right now!

  • Notepad++ (https://notepad-plus-plus.org/)
    • A free source code editor and Notepad replacement that supports several languages. It is a lot more involved and it’s not easy to install extensions unlike VSCode or Atom.

Starting from Scratch

If you don’t have a project yet, just simply copy the Luna Engine Base Folder and rename it to whatever you’d like. This will be your main project folder and doesn’t require any additional set up.

Adding to an existing Project

If you have an existing project then you will need to do the following:

  • Open your index.html with a Text IDE and add the following just below the lz-string.js entry. When in doubt, check the Luna Engine Base’s index.html to be safe.
<script type="text/javascript" src="js/libs/js-yaml.min.js"></script>
<script type="text/javascript" src="js/libs/tween.js"></script>
  • Copy the following files from the Luna Engine Base’s js/libs folder to your project’s js/libs folder.
Js-yaml-master folder
Js-yaml.min.js
Tween.js
  • Copy the following files from the Luna Engine Base’s js/plugins folder to your project’s js/plugins folder.
LunaEngine.js
LunaEngine.js.map
  • Copy the luna folder from the Luna Engine Base folder to your project’s root folder. It should look something like this.

  • Open your project in RPG Maker, go to Plugin Manager and add Luna Engine to the plugin list. It must be below all the other scripts like this:

Yanfly Battle Engine Core Note:

If you are using Yanfly's Battle Engine core, you must use a pre-existing template (eg. Sideview Template) SceneBattle.yml. Otherwise, it will throw an offset error. We apologize for the inconvenience.

Getting Started

All customization in Luna is done through yaml files (file extension: .yml) stored in the project’s main folder under a folder labeled “luna”.


Opening the folder will yield all the yaml files and should look something like below:


These files are where all configuration and customization of Luna happens.

If Luna is installed correctly, any changes made to these files should be reflected both test plays and published versions of the project. To refresh the playtest to see these changes in action, simply press F5 to restart the game. It’s not necessary to reopen the playtest like with plugin changes. It’s highly recommended to save often and to test newly changed or implemented configurations to ensure that no unintended errors have appeared and to narrow down ones that have appeared quickly.

Using Luna Engine

Now that you have gotten a copy of all the configuration files, you can now start customizing your UI! However, it's important to know what you need to customize. Please refer to these individual pages to get started:

Individual Scene Window Guide

A breakdown of RPG Maker's UI components. Go to this page, Individual Scene Window Guide, to read the full details.

Luna Engine Configuration Guide

A guide on how to use Luna Engine to customize your game. Go to this page, Luna Engine Configuration Guide, to read the full details.

Luna Engine Limitations

A quick rundown of what you can't do with Luna Engine. Go to this page, Luna Engine Limitations, to read the full details.

Video Tutorials

Official Tutorial Videos

Still under construction

User-Submitted Tutorials Playlist

Frequently Asked Questions

Can this make new menus from scratch?

  • No, it can't. It only edits preexisting windows. That means, you can find a script that has something you need and modify it with Luna Engine when necessary.

Can this remove menus?

  • No, it can't. Removing whole windows is just not possible without touching the base code. Our recommendation is just to move the undesired window off-screen. This is standard practice for RPG Maker coding.

I am getting a SafeLoad undefined error!

  • Make sure to properly follow the instructions in the installation section. This means that YAML js is missing and is not set properly in your index.html

My image won't show up the first time unless I reopen the menu or something similar

Are you planning to do Video Tutorials?

  • It’s something we are considering.