Alright, if one wants to give SpriteBase an extra value, say:
float zposition;
in SpriteBase.cs;
How would you retrieve the value for that instance of SpriteBase currently being drawn whenever LayerBase uses Draw() (Inside of LayerBase, that is)?
I need to access a SpriteBase value of the current sprite being drawn within LayerBase.Draw()
I have the variable in SpriteBase.cs, and I need to get that value for the specified sprite instance and have it used in the Draw() Method of LayerBase.
Example= m_Mario_1.zposition = 5. Now I need to access the zposition variable that belongs to that instance of Mario in Draw()
I can't seem to find the object that holds the current sprite being drawn..
Can someone help?
