diff options
author | Aki <nthirtyone@gmail.com> | 2017-09-09 06:17:37 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-09-09 06:17:37 +0200 |
commit | ca8dbe135034f7a72b6b40f6dfd7b772bd51cc39 (patch) | |
tree | 40debe5020c49290cc05ba15ce136a4e03811018 /not/Camera.lua | |
parent | 11dcd305ac4bf23f6fc2ddfe878376abaddefcac (diff) | |
download | roflnauts-ca8dbe135034f7a72b6b40f6dfd7b772bd51cc39.zip roflnauts-ca8dbe135034f7a72b6b40f6dfd7b772bd51cc39.tar.gz roflnauts-ca8dbe135034f7a72b6b40f6dfd7b772bd51cc39.tar.bz2 |
Started Camera rework
Diffstat (limited to 'not/Camera.lua')
-rw-r--r-- | not/Camera.lua | 39 |
1 files changed, 15 insertions, 24 deletions
diff --git a/not/Camera.lua b/not/Camera.lua index 6e07372..79ebd09 100644 --- a/not/Camera.lua +++ b/not/Camera.lua @@ -1,29 +1,20 @@ ---- `Camera` --- Used in drawing. -Camera = { - x = 0, - y = 0, - dest_x = 0, - dest_y = 0, - shake = 0, - timer = 0, - delay = 0, - origin_x = 0, - origin_y = 0, - shake_x = 0, - shake_y = 0, - world = --[[not.World]]nil, -} +--- Used in drawing other stuff in places. +Camera = require "not.Object":extends() --- Constructor of `Camera` function Camera:new (world) - local o = {} - setmetatable(o, self) - self.__index = self - o.world = world - o:setPosition(o:follow()) - o:setDestination(o:follow()) - return o + self.world = world + self.x = 0 + self.y = 0 + self.dest_y = 0 + self.dest_x = 0 + self.timer = 0 + self.delay = 0 + self.origin_x = 0 + self.origin_y = 0 + self.shake_x = 0 + self.shake_y = 0 + self:setPosition(self:follow()) + self:setDestination(self:follow()) end -- Drawing offsets |