Mire Engine


Replying to Main menu

  • Create account

    • Nickname:
  • Enter your Post

    •              
           
       
      FFUpload  Huppy Pick colour  HTML Editor  Help
      .
    •      
       
      File Attachments    Clickable Smilies    Show All
      .
  • Clickable Smilies

    • :huh:^_^:o:;):P:D:lol::B)::rolleyes:-_-<_<:)
      :wub::angry::(:unsure::wacko::blink::ph34r::alienff::cry::sick::shifty::woot:
      <3:XD:*_*:];P:XP:(:=)X):D:>.<>_<
      =_=:|:?3_3:p:;_;^U^*^^*:=/::*::b::f:
      :it::en:          
  • File Attachments

    • ForumFree Hosting   jpg gif png zip ...

      Descr.:
      Image Hosting: host it!

  •   

Last 10 Posts [ In reverse order ]

  1. Posted 3/11/2018, 14:21

    Cattura



    :it:
    Il Main Menu è stato creato utilizzando lo strumento di generazione delle scene. :)

    :en:
    The Main Menu was generated using Scene Manager tool :)

    //####################################################
    //# Default Scene_Game #
    //# Warning: #
    //# This class is vital. #
    //# You can Clear all content in this script #
    //# and make empty all function #
    //# But you cannot remove the file. #
    //# Mire depends on it. #
    //#--------------------------------------------------#
    //# By Mire Dev #
    //####################################################

    #include "Bitmap.js" //Bitmap Class
    #include "Actors.js" //Actor Class
    #include "Keyboard.js"


    function Scene_Game()
    {
    this.bitmap = new Bitmap();
    this.Actor = new Actors();
    this.keyboard = new Keyboard();
    this.scene = new Scene_Manager();

    };


    //Initialize Method for Scene Game
    Scene_Game.prototype.Initialize = function()
    {

    var act = new Actors();
    act.Initialize();

    act.Enable();
    act.Controls(true);


    };


    //Update Method for Scene Game
    Scene_Game.prototype.Update = function()
    {

    if(this.keyboard.GetKey() == "escape")
    {
    this.scene.Call("Scene_Menu");
    }
    };


Review the complete topic (launches new window)