2019-12-28 12:15:43 +01:00
|
|
|
-- scenes/moveplayer3D :: a basic player movement example in fake3D
|
2019-02-03 19:40:28 +01:00
|
|
|
|
|
|
|
--[[
|
|
|
|
Copyright © 2019 Kazhnuz
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
]]
|
|
|
|
|
2019-12-28 21:51:41 +01:00
|
|
|
local PlayStyle = require "game.modules.playstyle"
|
|
|
|
local MovePlayer = PlayStyle:extend()
|
2019-02-03 19:40:28 +01:00
|
|
|
|
2019-12-28 14:13:19 +01:00
|
|
|
local TestWorld = require "game.modules.world.parent"
|
|
|
|
local ShootWorld = require "game.modules.world.shoot"
|
|
|
|
local BattleWorld = require "game.modules.world.battle"
|
2019-02-11 22:36:04 +01:00
|
|
|
|
2019-12-29 10:04:16 +01:00
|
|
|
function MovePlayer:new()
|
2020-01-26 15:30:00 +01:00
|
|
|
MovePlayer.super.new(self, {"shoot", "test", "battle"}, "testmissions", {"sonic"})
|
2019-02-03 19:40:28 +01:00
|
|
|
end
|
|
|
|
|
2019-12-28 21:51:41 +01:00
|
|
|
function MovePlayer:initWorld()
|
2020-01-02 21:56:42 +01:00
|
|
|
ShootWorld(self, "testlevel.test1")
|
2019-12-28 21:51:41 +01:00
|
|
|
--BattleWorld(self, "ebeach")
|
2020-01-02 21:56:42 +01:00
|
|
|
--TestWorld(self)
|
2019-12-28 21:51:41 +01:00
|
|
|
end
|
|
|
|
|
2019-12-28 12:15:43 +01:00
|
|
|
return MovePlayer
|