Giter Club home page Giter Club logo

quicksetup's Introduction

Made with GameMaker

โ„š๐•ฆ๐•š๐•”๐•œ๐•Š๐•–๐•ฅ๐•ฆ๐•ก

This is a toolset I personally use to make GameMaker projects easier to produce!

If you find any issues please report it as sometimes I don't catch bugs before I send stuff out :^)

Make sure to replace all the QuickSetup default things in the Game Options

image

Info

The init script is where I put all my variables but you don't really need to put them there if you don't want to. The first room in the project is r_init, this is where I put all of my persistent objects.

s_default can be removed I just put it there to fill the void.

These macros are used for setting the in-game resolution
image
DEBUG is just a debug flag you can use
STARTRM is for the actual room you plan on starting in. You go to it automatically at the start of the game.


GameMaker_I4NTd3W68U

This is just for setting the game caption. You don't need to use this and if you want to get rid of it then delete the Game Start event in MANAGER

=== MUSIC PLAYER ===

The music player is really simple to use. The script for it is located in '_audio' You can see the details there.

Simply use the Music() function to play music like this

 
 if( playMusic == true )
	{
		Music(MySong,Looping,FadeType);
	}
 

The fade types are as follows-

0 : No Fade (Hard Cut)
1 : Fade In & Out
2 : Crossfade

====================

=== DEBUGGER ===

This is my own 'in-house' tool I use for almost all projects It lists all rooms in the game (minus 2 characters at the start because of my own prefix preference for rooms

You can press CTRL to toggle it

There is also a debug screen that toggles an objects name at their origin You can add information to it in the step event. It displays basic information such as the build date & time, Game Framerate and Real Framerate, and the current room

It can be toggled with TAB

====================

=== dbg() Script ===

This script is a substitute for show_debug_message & show_message I got tired of writing them out so I made a script for them. It also displays the object that's calling it (Note: I have no idea what happens if you call it from the script without it being invoked by an object)

====================

=== Camera System ===

If you prefer viewports or just like making your own camera system you can get rid of this. It just creates a camera at Room Start for you to use.

====================

quicksetup's People

Contributors

xmephist avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.