Imgflip Logo Icon

I HAD TO WRITE ALL THIS AHHHHHHHH

205 views 4 upvotes Made by anonymous 3 years ago in MS_memer_group
Angry Russian Guy memeCaption this Meme
7 Comments
1 up, 3y,
1 reply
I feel your pain.
[deleted] M
0 ups, 3y
my man
1 up, 3y,
1 reply
Mf I was inspecting shit as well.
[deleted] M
0 ups, 3y,
1 reply
made w/ Imgflip meme maker
Bruh, this shit is a game engine bruh💀
1 up, 3y
Oh.
[deleted]
1 up, 3y,
1 reply
I like your funny words magic man | image tagged in i like your funny words magic man | made w/ Imgflip meme maker
[deleted] M
1 up, 3y
extends KinematicBody2D

const UP = Vector2(0,-1)
const GRAVITY = 20
const MAXFALLSPEED = 200
const MAXSPEED = 80
const JUMPFORCE = 300
const ACCEL = 10

var motion = Vector2()
var facing_right = true

func _ready():
pass

func _physics_process(_delta):

motion.y += GRAVITY
if motion.y > MAXFALLSPEED:
motion.y = MAXFALLSPEED



if facing_right == true:
$Lancer.scale.x = 1
else:
$Lancer.scale.x = -1

motion.x = clamp(motion.x,-MAXSPEED,MAXSPEED)

if Input.is_action_pressed("right"):
motion.x += ACCEL
facing_right = true
elif Input.is_action_pressed("left"):
motion.x -= ACCEL
facing_right = false
else:
motion.x = lerp(motion.x,0,0.2)

if is_on_floor():
if Input.is_action_just_pressed("jump"):
motion.y = -JUMPFORCE
motion = move_and_slide(motion,UP)
Angry Russian Guy memeCaption this Meme
Created from video with the Imgflip Animated GIF Maker