Advertisement
Guest User

Untitled

a guest
Aug 12th, 2024
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
GDScript 2.29 KB | Source Code | 0 0
  1. extends CharacterBody3D
  2.  
  3. const SPEED = 5.0
  4. const JUMP_VELOCITY = 10
  5.  
  6. var is_wall_sliding : bool =false
  7. var camoffset=0
  8. var camfollow = 0
  9. # Get the gravity from the project settings to be synced with RigidBody nodes.
  10. var gravity = ProjectSettings.get_setting("physics/3d/default_gravity")
  11.  
  12. @onready var Raycast_Down= $RayCastDown
  13.  
  14. func _physics_process(delta):
  15.     # Add the gravity.
  16.     if not is_on_floor():
  17.         velocity.y -= gravity * delta
  18.  
  19.     # Handle jump.
  20.    
  21.     jump()
  22.     wall_slide(delta)
  23.    
  24.     # Get the input direction and handle the movement/deceleration.
  25.     var input_dir = Input.get_vector("Walk_Left", "Walk_Right", "Move_Up", "Move_Down")
  26.     var direction = (transform.basis * Vector3(input_dir.x, input_dir.y, 0)).normalized()
  27.     if direction:
  28.         velocity.x = direction.x * SPEED
  29.         velocity.z = direction.z * SPEED
  30.     else:
  31.         velocity.x = move_toward(velocity.x, 0, SPEED)
  32.         velocity.z = move_toward(velocity.z, 0, SPEED)
  33.  
  34.     move_and_slide()
  35.    
  36.     #Camera Offset
  37.     if direction.x != 0 and position.x==0:
  38.         camoffset=(direction.x/abs(direction.x)*(5))
  39.         camfollow=0.012
  40.     else:
  41.         camoffset=0
  42.         camfollow=0.03
  43.    
  44.     #Make Camera Follow the player
  45.     #$CameraController.position = lerp($CameraController.position, position + Vector3((direction.x)*6,-(direction.y),0), camfollow)
  46.     $CameraController.position.x = lerp($CameraController.position.x, position.x + camoffset, camfollow)
  47.     $CameraController.position.y = lerp($CameraController.position.y, position.y - direction.y, 0.1)
  48.  
  49. func jump():
  50.     if Input.is_action_just_pressed("ui_accept"):
  51.         if  is_on_floor():
  52.             velocity.y = JUMP_VELOCITY
  53.         if is_on_wall() and Input.is_action_pressed("Walk_Right"):
  54.                 velocity.y = JUMP_VELOCITY
  55.                 velocity.x = JUMP_VELOCITY
  56.         if is_on_wall() and Input.is_action_pressed("Walk_Left"):
  57.             velocity.y = JUMP_VELOCITY
  58.             velocity.x = -JUMP_VELOCITY
  59.        
  60. func wall_slide(delta):
  61.     if is_on_wall_only():
  62.         if (Input.is_action_pressed("Walk_Left") or Input.is_action_pressed("Walk_Right")):
  63.             is_wall_sliding=true
  64.         else:
  65.             is_wall_sliding=false
  66.     else:
  67.         is_wall_sliding=false
  68.            
  69.     if is_wall_sliding:
  70.         var _wall_slide_speed= -10*(delta)
  71.         velocity.y += _wall_slide_speed
  72.         velocity.y = min(velocity.y, -gravity * delta)
  73.         print(velocity.y, "    ", _wall_slide_speed,"    ",-gravity * delta)
  74.        
  75. #Fix wall slide
  76.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement