-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtabGoFishingScreen.lua
More file actions
44 lines (30 loc) · 970 Bytes
/
tabGoFishingScreen.lua
File metadata and controls
44 lines (30 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module(..., package.seeall)
--====================================================================--
-- SCENE: GO FISHING SCREEN
--====================================================================--
--[[
- Version: [1.0]
- Made by: tsengvn
- Mail: nmhien88@gmail.com
******************
- INFORMATION
******************
--]]
function new()
------------------
-- Groups
------------------
local localGroup = display.newGroup()
-- begin create screen
local background = display.newImage("images/background/BackGround_forAll.png", true)
local header = display.newImage("images/Button_MainMenu_RiverSea_River_Selected.png", true)
local map = display.newImageRect("images/Map_MainMenu_River.png", display.contentWidth , 250)
map:setReferencePoint(display.TopLeftReferencePoint);
map.y = header.height
map.x = 0
localGroup:insert(background)
localGroup:insert(header)
localGroup:insert(map)
-- end create screen
return localGroup
end