aboutsummaryrefslogtreecommitdiffstats
path: root/Scripts/init.lua
blob: f92e36667bcdab0b713ea1110e113b74af9349d2 (plain)
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
45
46
47
bird = {
    Position = {
        x = 1.2,
        y = 3.4
    },
    Name = "bord",
    Init = function(self)
        print(self.Position.x .. "," .. self.Position.y)
    end
}

dog = {
    Velocity = {
        x = 0.01,
        y = 10.5
    },
    Position = {
        x = 6.5,
        y = 1.3
    },
    Render = {
        texture = "assets/tex.png",
        visible = true
    },
    Init = function(self)
        print(self.Position.x .. "," .. self.Position.y)
    end,
    Idle = function(self)
        self.Position.x = self.Position.x + 0.01;
    end
}

animal = {
    Render = {
        texture = "assets/anim.png",
        visible = false
    }
}

birdSpawn = game.spawn(bird);
birdSpawn:Init()

dogSpawn = game.spawn(dog);
dogSpawn:Init()
dogSpawn.Position.x = 37.5

animalSpawn = game.spawn(animal);