Comments

Log in with itch.io to leave a comment.

(1 edit)

Hi, 

Quick question you said "A well thought out code structure to easily expand every aspect of the template and make your own game with it". And I'm Just wondering about the enemies. I assume you have the typical for this game kinda I'm coming for you and when I get you I damage you kin if enemies. With the system you have in there how easily would you say I could add a ranged enemy r one that explodes.

Also is this straight to the game or is there a manu kinda of thing?

Just asking before confirming the payment.

Kind regards 

K.

(+1)

Hey thanks for being interested :)

Both player and enemies are based on a so called Character class. It is mainly used to deal with stats, collision etc.
AI behavior and player input are handled via AI_Controller and Player_Controller respectively. 

Meaning when and how an enemy attacks is decided by the AI_Controller right now and it only handles melee attacks. You can add ranged attacks by enhancing AI_Controller and the Character (or Character_Stats) classes. Just depends on how exactly you want to do this. 
For example it's kinda important whether you want to have hitscan, bullet objects or both as ranged attacks. With exploding enemies the same question applies. Everything is possible, but you'll have to implement it. Hitscan should be the easiest to implement without having to write too much code.

Also the template only provides the main game scene, no main menu etc.

Hope this answers your questions. Have a nice week :)

(+2)

It would be very nice to try demo project, to see whats implemented.

Thanks for the suggestions, I'll think about about it :)

(+1)(-1)

Well its 6 months and you are still thinking. Very nice. Think some more. And you will sell 0 templates untill we see what we are buying.

I don't know why you seem to be angry about this. If you don't want to buy it without a demo it's fine.

(+1)

I am not angry. I wish you good luck. 

(+2)

I love how it's for Godot. Quick question: do the enemies collide with each other the way they do in Vampire Survivors? Or do they just sort of slide past each other, so if you kite the swarm in a circle a few times, they all collapse into a single stack of enemies occupying a single tile in the game world?

Thanks for the comment. No enemies don't collide with each other.