26 lines
717 B
Lua
26 lines
717 B
Lua
-- Copyright (c) 2017 Corona Labs Inc.
|
|
-- Code is MIT licensed and can be re-used; see https://www.coronalabs.com/links/code/license
|
|
-- Other assets are licensed by their creators:
|
|
-- Art assets by Kenney: http://kenney.nl/assets
|
|
-- Music and sound effect assets by Eric Matyas: http://www.soundimage.org
|
|
|
|
print("main.lua file accessed")
|
|
|
|
local composer = require("composer")
|
|
|
|
-- Hide status bar
|
|
display.setStatusBar(display.HiddenStatusBar)
|
|
|
|
-- Seed the random number generator
|
|
math.randomseed(os.time())
|
|
|
|
-- Reserve channel 1 for background music
|
|
audio.reserveChannels(1)
|
|
-- Reduce the overall volume of the channel
|
|
audio.setVolume(0.5, { channel = 1 })
|
|
|
|
-- Go to the menu screen
|
|
composer.gotoScene("menu")
|
|
|
|
|