Godotでの移動方法の基本ガイド


  1. オブジェクトの位置を直接変更する方法: Godotでは、オブジェクトの位置を直接変更することで移動を実現することができます。以下のコード例では、2Dオブジェクトの位置を毎フレームごとに変更する方法を示しています。
extends Node2D
var speed = 100
func _process(delta):
    var velocity = Vector2.ZERO
    if Input.is_action_pressed("ui_right"):
        velocity.x += speed
    if Input.is_action_pressed("ui_left"):
        velocity.x -= speed
    if Input.is_action_pressed("ui_down"):
        velocity.y += speed
    if Input.is_action_pressed("ui_up"):
        velocity.y -= speed

    position += velocity * delta
  1. 移動に物理エンジンを使用する方法: Godotの物理エンジンを使用すると、リアルな移動効果を実現することができます。以下のコード例では、RigidBody2Dノードを使用して2Dオブジェクトを移動させる方法を示しています。
extends RigidBody2D
var speed = 100
func _process(delta):
    var velocity = Vector2.ZERO
    if Input.is_action_pressed("ui_right"):
        velocity.x += speed
    if Input.is_action_pressed("ui_left"):
        velocity.x -= speed
    if Input.is_action_pressed("ui_down"):
        velocity.y += speed
    if Input.is_action_pressed("ui_up"):
        velocity.y -= speed

    linear_velocity = velocity
  1. Tweenノードを使用する方法: GodotのTweenノードを使用すると、スムーズなアニメーション効果を実現しながらオブジェクトを移動させることができます。以下のコード例では、Tweenノードを使用してオブジェクトを指定した位置に移動させる方法を示しています。
extends Node2D
var tween = Tween.new()
var target_position = Vector2(100, 100)
var duration = 1
func _ready():
    add_child(tween)
    tween.interpolate_property(self, "position", position, target_position, duration, Tween.TRANS_LINEAR)
    tween.start()

以上がGodotでの移動方法の基本的なガイドです。これらの方法を組み合わせたり、カスタマイズしたりすることで、より複雑な移動パターンを実現することができます。詳細な情報については、Godotの公式ドキュメントやコミュニティのリソースを参照してください。