最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

gdscript - Godot why does wrapf(..) correctly wrap my ship off the screen but conditionally setting position fails? - Stack Over

programmeradmin1浏览0评论

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?

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论