Browse Source

Node and Node2D now have the .get_world_position() method. For Node, this will return the parent's world position otherwise (0,0). For Node2D this returns the screen position of Node2D instance.

master
Bryan Miller 6 years ago
parent
commit
bd090bf99e
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      game/gbe/nodes.py

+ 12
- 0
game/gbe/nodes.py View File

def child_count(self): def child_count(self):
return len(this._NODE_DATA["children"]) return len(this._NODE_DATA["children"])


def get_world_position(self):
if self.parent is None:
return (0,0)
return self.parent.get_world_position()

def parent_to_node(self, parent, allow_reparenting=False): def parent_to_node(self, parent, allow_reparenting=False):
if not isinstance(value, Node): if not isinstance(value, Node):
raise NodeError("Node may only parent to another Node instance.") raise NodeError("Node may only parent to another Node instance.")
self.on_render() self.on_render()
del self._ACTIVE_SURF del self._ACTIVE_SURF


def get_world_position(self):
pos = self.position
if self.parent is None:
return pos
ppos = self.parent.get_world_position()
return (pos[0] + ppos[0], pos[1] + ppos[1])

def _render(self, surface): def _render(self, surface):
self._callOnRender(surface) self._callOnRender(surface)
Node._render(self, surface) Node._render(self, surface)

Loading…
Cancel
Save