• Register
Post news Report RSS Progress update (January 2016)

Redrawn lots of art, cutscene system, items that you can pick up!

Posted by on

I've spend lots of time drawing stuff in axonometric perspective and giving more volume to stuff.


Here's an old screenshot for comparison:


You may notice that I made a lot of changes in Master's sprite. One big change was making it more 3d by using colors better (I'm still not very good at this, but at least the sprite doesn't look as flat as it did before!)


I was making pickable items and remaking item menus and I decided to make something a bit silly


Right now I'm working on a cutscene system and it's working pretty well. Here's an example of a simple cutscene. Nothing special, but I'm very glad to see the characters come into life. Now I need to draw some animations :D


local cutscene =  {
    {
        type = ActionType.Dialogue,
        entityTag = "MASTER",
        talkTag = "GREETINGS"
    },
    {
        type = ActionType.GoTo,
        entityTag = "MASTER",
        destinationEntityTag = "BUTTON_BRIDGE_MASTER"
    },
    {
        type = ActionType.Event,
        eventType = EventType.TriggerEnteredEvent,
        subjectTag = "TRIGGER_CROSSED_BRIDGE"
    },
    {
        type = ActionType.GoTo,
        entityTag = "MASTER",
        destinationEntityTag = "TRIGGER_GO_TO_HOUSE"
    },
    {
        type = ActionType.Dialogue,
        entityTag = "MASTER",
        talkTag = "COME_IN"
    }
}

It's easy to read and modify which is great. I especially like "Event" action which waits until the particular event is triggered (in this example it's when the player walks across the bridge and collides with invisible trigger)

I was able to do lots of stuff with Cutscene system I've made recently. It's more like "scripted sequence of events", not just for cutscenes. It would take me so long to make the same without it (I previously made short cutscenes with triggers all around the map and different callbacks between entities which was pretty painful).
I'll make cool cutscene soon and I'll be able to show it's full strength. :)

I don't have much time to work on the game now, because of the exams but they'll soon be over and I'll spend lots of time making the game. :)

Post comment Comments
Cpt.McBacon
Cpt.McBacon - - 255 comments

Thanks a lot for posting this, it's very informative!

I've been following your progress since I stumbled upon your LUA & C++ tutorial. All of your updates since, have been incredible and also motivational for me.

Keep up the good work and please don't stop! Haha!

Reply Good karma Bad karma+2 votes
eliasdaler Author
eliasdaler - - 14 comments

And thank you for your support! Glad you like the stuff I'm making :)
I won't stop, I can promise that. :)

Reply Good karma+2 votes
Post a comment

Your comment will be anonymous unless you join the community. Or sign in with your social account: