소스 검색

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 년 전
부모
커밋
bd090bf99e
1개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제
  1. +12
    -0
      game/gbe/nodes.py

+ 12
- 0
game/gbe/nodes.py 파일 보기

@@ -75,6 +75,11 @@ class Node:
def child_count(self):
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):
if not isinstance(value, Node):
raise NodeError("Node may only parent to another Node instance.")
@@ -209,6 +214,13 @@ class Node2D(Node):
self.on_render()
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):
self._callOnRender(surface)
Node._render(self, surface)

Loading…
취소
저장