Improved environment
This commit is contained in:
@ -1,7 +1,35 @@
|
||||
extends Node3D
|
||||
class_name Player
|
||||
extends CharacterBody3D
|
||||
|
||||
func _ready():
|
||||
pass
|
||||
const MOVE_SPEED = 4.5
|
||||
const JUMP_VELOCITY = 4.5
|
||||
const DECELERATE = 0.75
|
||||
|
||||
func _process(_delta):
|
||||
pass
|
||||
var gravity = ProjectSettings.get_setting("physics/3d/default_gravity")
|
||||
var move: Vector2
|
||||
|
||||
func _input(_event):
|
||||
move = Input.get_vector("move_left", "move_right", "move_forward", "move_backward")
|
||||
|
||||
func _physics_process(delta):
|
||||
movement()
|
||||
fall(delta)
|
||||
move_and_slide()
|
||||
|
||||
func movement():
|
||||
var direction = (Global.camera.transform.basis * Vector3(move.x, 0, move.y)).normalized()
|
||||
# var direction = Vector3(move.x, 0, move.y).normalized()
|
||||
|
||||
if direction:
|
||||
velocity.x = direction.x * MOVE_SPEED
|
||||
velocity.z = direction.z * MOVE_SPEED
|
||||
else:
|
||||
velocity.x *= DECELERATE
|
||||
velocity.z *= DECELERATE
|
||||
|
||||
func fall(delta):
|
||||
if is_on_floor():
|
||||
if Input.is_action_just_pressed("jump"):
|
||||
velocity.y = JUMP_VELOCITY
|
||||
else:
|
||||
velocity.y -= gravity * delta
|
||||
|
@ -1,12 +1,23 @@
|
||||
[gd_scene load_steps=3 format=3 uid="uid://2lcnu3dy54lx"]
|
||||
[gd_scene load_steps=5 format=3 uid="uid://2lcnu3dy54lx"]
|
||||
|
||||
[ext_resource type="Script" path="res://player/Player.gd" id="1_8gebs"]
|
||||
|
||||
[sub_resource type="BoxMesh" id="BoxMesh_8125v"]
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_fx2di"]
|
||||
|
||||
[node name="Player" type="Node3D" groups=["Player"]]
|
||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_5eict"]
|
||||
diffuse_mode = 3
|
||||
albedo_color = Color(0.0588235, 0.0823529, 0.113725, 1)
|
||||
|
||||
[sub_resource type="BoxMesh" id="BoxMesh_8125v"]
|
||||
material = SubResource("StandardMaterial3D_5eict")
|
||||
|
||||
[node name="Player" type="CharacterBody3D" groups=["Player"]]
|
||||
script = ExtResource("1_8gebs")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0)
|
||||
shape = SubResource("BoxShape3D_fx2di")
|
||||
|
||||
[node name="MeshInstance3D" type="MeshInstance3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0)
|
||||
mesh = SubResource("BoxMesh_8125v")
|
||||
|
Reference in New Issue
Block a user