Initial commit: Star Explorer Solar2D Game
This commit is contained in:
25
main.lua
Normal file
25
main.lua
Normal file
@@ -0,0 +1,25 @@
|
||||
-- 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")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user