Beta F.A.Q


Frequently Asked Questions about Mire Engine Beta.

During beta, I have come up with several questions regarding the features of Mire. So I'll write a set of practical answers for users.


How to Change Tileset?

Right Click on Tileset

Just click, "Load Tile from Image" then press OK.

Mire support default 32 x 32 Tilesheet, you can use 48x48 if you want. But player walking on 32 x 32 block and check collision.


_____________________________________________________________________________________________________


How to Switch Full Screen? or Change Resolution?

Simple goto in your project folder.

"YOURGAME\Content\data\Script\js" edit the file main.js

#include "Screen.js"

function main()
{

//Create a new screen classe
var s = new Screen();

//Setup Parameters
s.GameTitle("Mire Engine");   <- Game Title
s.Width = 1024;  <- Screen Resolution Width and Height
s.Height = 768;
s.FullScreen(false); // -> true for Full screen  <- Full Scree Change false to true

//Apply all Changes
s.Initialize();

}

_________________________________________________________________________________________________

How to Change Background, Sound and System Skin?

"YOURGAME\Content\data\Script\js" edit the file Scene_Title.js

//Initialize the Scene

Scene_Title.prototype.Initialize = function()

{

 //Method Initialize

  var b = new Bitmap();

     //Load Background Image

  b.Cache(0,"data\\GUI\\Title\\Mire.png");  <------- TitleScreen Background

     //Load System Skin

  this.window.Cache("System01");   <---- System Skin file in YOURGAME\Content\data\System

    //Creating Window Selectable

  this.window.Add_SelectableItem(0,0,"New Game");

  this.window.Add_SelectableItem(0,1,"Continue");

  this.window.Add_SelectableItem(0,2,"Exit");

  this.audio.PlayBGM("Juster Theme.wma");  <--- Background Music (Mire supports mp3, wma, wav)

  

};

About more questions, plase use the forum https://mire.forumfree.it/

Get Mire Engine

Download NowName your own price

Leave a comment

Log in with itch.io to leave a comment.