Imgflip Logo Icon

software engineer

software engineer | image tagged in software engineer | made w/ Imgflip meme maker
132 views β€’ 13 upvotes β€’ Made by eternalsugar 2 years ago in MS_memer_group
software engineer memeCaption this Meme
8 Comments
[deleted]
1 up, 2y
lord timothy the third | image tagged in lord timothy the third | made w/ Imgflip meme maker
he's tryin man 😭😭
1 up, 2y
made w/ Imgflip meme maker
[deleted] M
1 up, 2y,
1 reply
I'm tryin' man😭😭😭😭😿😿😿😿

var velocity = Vector2.ZERO

onready var animationPlayer = $AnimationPlayer
onready var animationTree = $AnimationTree
onready var animationState = animationTree.get("parameters/playback")

func _ready():
animationTree.active = true

func _physics_process(delta):
match state:
MOVE:
move_state(delta)

ROLL:
pass

ATTACK:
attack_state(delta)

func move_state(delta):
var input_vector = Vector2.ZERO
input_vector.x = Input.get_action_strength("ui_right") - Input.get_action_strength("ui_left")
input_vector.y = Input.get_action_strength("ui_down") - Input.get_action_strength("ui_up")
input_vector = input_vector.normalized()

velocity.x = 0
velocity.y = 0

if input_vector != Vector2.ZERO:
animationTree.set("parameters/Idle/blend_position", input_vector)
animationTree.set("parameters/Run/blend_position", input_vector)
animationTree.set("parameters/Attack/blend_position", input_vector)
animationState.travel("Run")
velocity += input_vector * ACCELERATION
else:
animationState.travel("Idle")
velocity = Vector2.ZERO

velocity = move_and_slide(velocity)

if Input.is_action_just_pressed("attack"):
state = ATTACK

func attack_state(delta) :
velocity = Vector2.ZERO
animationState.travel("Attack")

func attack_animation_finished():
state = MOVE
1 up, 2y
NAHHHH U DOIN DAMN GOOD
1 up, 2y,
1 reply
He looks like the battlepass, you know what Google show me this guys balls!
0 ups, 2y,
1 reply
LMFOA
1 up, 2y
I do need capital. And votes. Wanna know why? "I have a dream." That one day, every person in this nation will control their OWN destiny. A land of the TRULY free, dammit. A nation of ACTION, not words. Ruled by STRENGTH, not committee. Where the law changes to suit the individual, not the other way around. Where power and justice are back where they belong: in the hands of the people! Where every man is free to think -- to act -- for himself! F**k all these limp-dick lawyers and chicken-shit bureaucrats. F**k this 24/7 Internet spew of trivia and celebrity bullshit. F**k "American pride". F**k the media! F**k all of it! America is diseased. Rotten to the core. There's no saving it -- we need to pull it out by the roots. WIpe the slate clean. BURN IT DOWN! And from the ashes, a new America will be born. Evolved, but untamed! The weak will be purged, and the strongest will thrive -- free to live as they see fit, they will make America GREAT AGAIN!
[deleted] M
1 up, 2y
Ong
software engineer memeCaption this Meme
Created with the Imgflip Meme Generator