All Psych Engine lua function can be found Here.
Creates a Grid BG with a specific Width, Height And Speed and store it as the name input in "tag".
• tag - Grid's name tag to save
• cellWidth - Width of a grid cell
• cellHeight - Height of a grid cell
• width - Grid's width size
• height - Grid's height size
• xVel - Grid's speed on the X-axis
• yVel - Grid's speed on the Y-axis
addGridBG("mytag", 80, 80, 160, 160, 20, 20)
Creates a Grid BG with a specific Width, Height And Speed and store it as the name input in "tag".
• tag - Backdrops's name tag to save
• image - Backdrop's Image Path images/
• xVel - Backdrops's speed on the X-axis
• yVel - Backdrop's speed on the Y-axis
addBackdrop("mytag", 'menuBG', 100, 100)
Removes the existing backdrop with the name specified in "tag."
• tag - Backdrops's name tag to save
• image - Backdrop's Image Path images/
• xVel - Backdrops's speed on the X-axis
• yVel - Backdrop's speed on the Y-axis
addBackdrop("mytag", 'menuBG', 100, 100)
Changes Game Window's Size With specific Width, Height ,Duration and Ease.
• x - Game Window's X Size (Width)
• y - Game Window's Y Size (Height)
• duration - Speed Of How Fast is Tween is gonna be
• ease - Tween Ease
windowSize(1280, 720, 1, 'linear')
Similar to windowSize but it only changes the width of the window.
• x - Game Window's X Size (Width)
• duration - Speed Of How Fast is Tween is gonna be
• ease - Tween Ease
windowSizeX(1280, 1, "linear")
Similar to windowSize but it only changes the height of the window.
• y - Game Window's Y Size (Height)
• duration - Speed Of How Fast is Tween is gonna be
• ease - Tween Ease
windowSizeY(720, 1, "linear")
Changes Game Window's Position With specific X, Y ,Duration and Ease.
• x - Game Window's X Pos
• y - Game Window's Y Pos
• duration - Speed Of How Fast is Tween is gonna be
• ease - Tween Ease
windowPos(0, 0, 1, 'linear')
Similar to windowPos but it only changes the X position of the window
• x - Game Window's X Pos
• duration - Speed Of How Fast is Tween is gonna be
• ease - Tween Ease
windowPosX(0, 1, 'linear')
Similar to windowPos but it only changes the X position of the window
• y - Game Window's Y Pos
• duration - Speed Of How Fast is Tween is gonna be
• ease - Tween Ease
windowPosY(0, 1, 'linear')
Pops out a message box when trigged.
• message - Message what you want to put.
• caption - (I don't know what this does lmao)
• icon - What kind of icon you want. (MSG_ERROR, MSG_QUESTION, MSG_WARNING, MSG_INFORMATION)
showMessageBox("daveberry is cool", "i dunno what this does yet", MSG_INFORMATION)
Hides the taskbar, pretty self-explanatory.
• hide - Hides the taskbar whenever trigged
hideTaskbar(true)
Website Hosted by Netlify.com
Website designed by Daveberry