So, I have a player class with basic actions. During the gameplay he unlocks new abilities. I don't know how to store new actions within the player class. To be precise - I know how, but my method is too messy and i want to clean up code. Also, I want to add to the enemies some of those abilities. In other words, every game entity(expect walls, perhaps :D) should have a collection to which i can add methods that extend entity functionality. How do i make this? Sorry, if my question is too abstact
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
Create an action dictionary:
Then you can populate it like this:
And use like this:
Just put the population code somewhere on the outskirts (separate |
|||
|
|
EntityCanDo = Functionality.Jump | Functionality.Runor a list of actions? – Cyral Jan 27 at 14:03