admin管理员组文章数量:1345467
I'm writing an asteroids-type game in Godot 4.3, wherein the ship checks if it's off the screen and then moves itself to the opposite edge of the screen.
My first attempt, the following code lives in my ship node's script:
const SCREEN_WRAP_MARGIN = 10
func _process(delta: float) -> void:
# if ship leaves the screen, wrap around
if position.x < -SCREEN_WRAP_MARGIN:
position.x += screen_size.x + SCREEN_WRAP_MARGIN* 2
print("x < " , -SCREEN_WRAPAROUND_MARGIN, " at ", position.x)
# ... etc...
Bizarrely, when I run that code, the ship seems to correctly wrap from off the left side of the screen onto the right side. BUT the ship sprite starts flickering, and that condition evaluates every frame, logging a blatantly impossible message:
x < -10 at 1023.29853
The following code works, which I figured out based on this reddit thread
position.x = wrapf(position.x, -SCREEN_WRAP_MARGIN, screen_size.x + SCREEN_WRAP_MARGIN)
# ... etc...
I intuit that this strange behavior is related to the behavior of the underlying classes. My ship inherits from RigidBody2D, CollisionObject2D, Node2D, CanvasItem, and Node.
But...why?
本文标签:
版权声明:本文标题:gdscript - Godot why does wrapf(..) correctly wrap my ship off the screen but conditionally setting position fails? - Stack Over 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743797948a2540777.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论