Imgflip Logo Icon

Lalonde's Temp

Lalonde's Temp | Patrick Bateman biking to Antarctica gave me a wonderful game idea... | image tagged in lalonde's temp | made w/ Imgflip meme maker
67 views 4 upvotes Made by anonymous 2 years ago in MS_memer_group
Lalonde's Temp memeCaption this Meme
12 Comments
1 up, 2y,
1 reply
Make it just like that!!!
[deleted] M
0 ups, 2y,
1 reply
It might be easy since the graphics are super basic and I have no experience in 3d modeling
1 up, 2y,
1 reply
Tinker cad or blender
[deleted] M
0 ups, 2y,
3 replies
idk, my school blocked blender
1 up, 2y
Do you have a device at home?
1 up, 2y,
1 reply
You could make it a scratch game
[deleted] M
0 ups, 2y,
1 reply
Scratch is NOT coding at all.
I have Godot, a far superior platform.
1 up, 2y,
1 reply
wdym scratch isn't coding, it just uses blocks instead of text
[deleted] M
0 ups, 2y,
1 reply
It isn't coding to me.
I used it and I had a bad experience with it.
Very limited, and it was really annoying to get a character to move up, down, left, and right.
In godot, all I had to put in was:
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

easy
1 up, 2y
damn, i'm making a stock market in scratch rn
1 up, 2y
Or you can use tinkercad
1 up, 2y
Patrick bikeman
The game
Lalonde's Temp memeCaption this Meme
Created with the Imgflip Meme Generator
IMAGE DESCRIPTION:
Patrick Bateman biking to Antarctica gave me a wonderful game idea...