소스 검색

gbe.nodes.* updated to render to the world position instead of their location positions.

master
Bryan Miller 6 년 전
부모
커밋
ef644c0988
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      game/gbe/nodes.py

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

@@ -659,7 +659,7 @@ class NodeText(Node2D):
res.clear("font", self._NODETEXT_DATA["font_src"])
Node2D._render(self, surface)
if self._NODETEXT_DATA["surface"] is not None:
pos = self.position
pos = self.get_world_position()
pos = (int(pos[0]), int(pos[1]))
surface.blit(self._NODETEXT_DATA["surface"], pos)

@@ -863,7 +863,7 @@ class NodeSprite(Node2D):
fsurf = ssurf

# Place the sprite! WHEEEEE!
pos = self.position
pos = self.get_world_position()
surface.blit(fsurf, pos)

# Call on all children

Loading…
취소
저장