First Map Tests, Player + Movement and Spawning.
This commit is contained in:
parent
1351ce3178
commit
c483a438c7
7 changed files with 145 additions and 8 deletions
55
scripts/entities/player.gd
Normal file
55
scripts/entities/player.gd
Normal file
|
@ -0,0 +1,55 @@
|
|||
extends CharacterBody3D
|
||||
|
||||
|
||||
const SPEED: float = 5.0
|
||||
const JUMP_VELOCITY: float = 4.5
|
||||
|
||||
var activated: bool = false
|
||||
|
||||
@onready
|
||||
var camera: Camera3D = $Camera3D
|
||||
var camera_rotation: Vector2 = Vector2(0,0)
|
||||
|
||||
func _ready() -> void:
|
||||
if name == Game.username:
|
||||
activated = true
|
||||
camera.current = true
|
||||
Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED)
|
||||
|
||||
|
||||
func _physics_process(delta: float) -> void:
|
||||
if activated:
|
||||
if not is_on_floor():
|
||||
velocity += get_gravity() * delta
|
||||
|
||||
if Input.is_action_just_pressed("ui_accept") and is_on_floor():
|
||||
velocity.y = JUMP_VELOCITY
|
||||
|
||||
var input_dir: Vector2 = Input.get_vector("ui_left", "ui_right", "ui_up", "ui_down")
|
||||
var direction: Vector3 = (transform.basis * Vector3(input_dir.x, 0, input_dir.y)).normalized()
|
||||
|
||||
if direction:
|
||||
velocity.x = direction.x * SPEED
|
||||
velocity.z = direction.z * SPEED
|
||||
else:
|
||||
velocity.x = move_toward(velocity.x, 0, SPEED)
|
||||
velocity.z = move_toward(velocity.z, 0, SPEED)
|
||||
|
||||
if move_and_slide():
|
||||
pass
|
||||
|
||||
Networking.player_sync_call(position, rotation)
|
||||
|
||||
func _input(event: InputEvent) -> void:
|
||||
if event is InputEventMouseMotion and activated:
|
||||
var mouse_event: InputEventMouseMotion = event
|
||||
camera_rotation = mouse_event.relative * 0.01 * 0.5
|
||||
if camera.rotation.x <= 1.6 && camera_rotation.y <= 0:
|
||||
camera.rotate(Vector3.RIGHT, -camera_rotation.y)
|
||||
elif camera.rotation.x >= -1.6 && camera_rotation.y >= 0:
|
||||
camera.rotate(Vector3.RIGHT, -camera_rotation.y)
|
||||
if camera.rotation.x >= 1.6:
|
||||
camera.rotation.x = 1.6
|
||||
elif camera.rotation.x <= -1.6:
|
||||
camera.rotation.x = -1.6
|
||||
rotate(Vector3.DOWN, camera_rotation.x)
|
Loading…
Add table
Add a link
Reference in a new issue