@@Ardens. if you use rigidbody mechanics in your game you can make a pretty realistic but simple jumps system, however, here's the neat part: if you have a simple jump script for a rigidbody component, you can use a boolean in order to implement a DOUBLE jump system, which i think is PERFECT for such idea, combined with wallrunning and grappling this could be a very neat combo. This is a sample script I made just for a simple idea of how it would mainly look: bool canDoubleJump; public float jumpForce = 550f; float x, y; bool jumping; private bool readyToJump = true; private float jumpCooldown = 0.25f; private Rigidbody rb; private void Jump() { if ((grounded) && readyToJump) { MonoBehaviour.print("jumping"); Vector3 velocity = rb.velocity; readyToJump = false; rb.AddForce(Vector2.up * jumpForce * 1.5f); rb.AddForce(normalVector * jumpForce * 0.5f); if (rb.velocity.y < 0.5f) { rb.velocity = new Vector3(velocity.x, 0f, velocity.z); } else if (rb.velocity.y > 0f) { rb.velocity = new Vector3(velocity.x, velocity.y / 2f, velocity.z); } Invoke("ResetJump", jumpCooldown); canDoubleJump = true; } else if(canDoubleJump) { MonoBehaviour.print("double jumping"); Vector3 velocity = rb.velocity; readyToJump = false; rb.AddForce(Vector2.up * jumpForce * 1.5f); rb.AddForce(normalVector * jumpForce * 0.5f); if (rb.velocity.y < 0.5f) { rb.velocity = new Vector3(velocity.x, 0f, velocity.z); } else if (rb.velocity.y > 0f) { rb.velocity = new Vector3(velocity.x, velocity.y / 2f, velocity.z); } Invoke("ResetJump", jumpCooldown); canDoubleJump = false; } } anyways, I think your idea is great, hope this game will come out well
Hey man, love to see you uploading again! I think your game has lots of potential so keep it up. The mechanics are pretty fun but I can't stop myself form thinking how cool would it be to have some sort of grapple hook. Added to the burst it cold give so much depth to the movement! It's just a suggestion haha so please go on. Take care and cya soon
bruh, you jump on the deep end being aggressive to your viewers... love it!! 🤣 Really cool video! love the memes, really nice editing and it was hilarious and entertaining!! proud of you dude! Keep it up!
I love your content so much specially your videos style... like you combine animation (Three images only but still counts) and Good totally original content which you really DID NOT steal from anyone else (hint: Anyone who use unity) But for real I will rate your videos 11/10
9:40 oooooooooooh! If you could bounce off of those cubes 😍 Imagine, prospering those boxes and using them as small platforms that you can't stand on, but only pounce off them
3:40 as someone who has also tried using a game engine and having to deal with quaternions, I, too, can relate to the pain of not knowing what the fuck a quaternion is.
thanks for uploading video (lol) also one thing that you do good is you show all code. means no one can copy your game but the problem is occurring when programming you solve it by see your code. and ya when project complete you can upgrade by doing open source ( Waring : don't do open source at this point because .....) also this all was suggesting for help to you bye and ya thanks for give funny and informative video. where you live ? - what is your age ?
Just a heads up: start working on multiplier now, because later it will be too late and you will have to rewrite every system and script in your game or just give up
@@Ardens. LOL yeah the original idea is kinda different but ppl have been makin all sorts of variations over the years, coming rlly close. xD But no problem at all, I like the game and ur videos are great!
ok i’m downloading your game into my brain and imma play tonight hope this work.. gn i subscribed i downloaded your lucid dream haha lol because i don’t have computer..
i think this game needs no recoil,cuz all recoil goes in ur body,launcing u in opposite direction u shooting,only for game feel better just do animation where gun goes back and all.
This takes “I made my dream game!” to another level.
Love the editing style and humour, the game is starting to com together nicely aswell!
Thanks a lot!
Same
Same
Same
Same
0:10 I am subscribed, but you will never find me. YOUR NOT PUTTING ME IN THAT CAGE OF HOSTAGES.
"by the way you just thought of minecraft this time", ...... I have nothing to say, THIS GUY CAN READ FUCKIN MINDS.
imagine having a grappling gun in your off-hand with this... O_o
grappling gun? Hm? 🤔 Interesting
Yea thats a cool idea
@@Ardens. if you use rigidbody mechanics in your game you can make a pretty realistic but simple jumps system, however, here's the neat part:
if you have a simple jump script for a rigidbody component, you can use a boolean in order to implement a DOUBLE jump system, which i think is PERFECT for such idea, combined with wallrunning and grappling this could be a very neat combo.
This is a sample script I made just for a simple idea of how it would mainly look:
bool canDoubleJump;
public float jumpForce = 550f;
float x, y;
bool jumping;
private bool readyToJump = true;
private float jumpCooldown = 0.25f;
private Rigidbody rb;
private void Jump()
{
if ((grounded) && readyToJump)
{
MonoBehaviour.print("jumping");
Vector3 velocity = rb.velocity;
readyToJump = false;
rb.AddForce(Vector2.up * jumpForce * 1.5f);
rb.AddForce(normalVector * jumpForce * 0.5f);
if (rb.velocity.y < 0.5f)
{
rb.velocity = new Vector3(velocity.x, 0f, velocity.z);
}
else if (rb.velocity.y > 0f)
{
rb.velocity = new Vector3(velocity.x, velocity.y / 2f, velocity.z);
}
Invoke("ResetJump", jumpCooldown);
canDoubleJump = true;
}
else if(canDoubleJump)
{
MonoBehaviour.print("double jumping");
Vector3 velocity = rb.velocity;
readyToJump = false;
rb.AddForce(Vector2.up * jumpForce * 1.5f);
rb.AddForce(normalVector * jumpForce * 0.5f);
if (rb.velocity.y < 0.5f)
{
rb.velocity = new Vector3(velocity.x, 0f, velocity.z);
}
else if (rb.velocity.y > 0f)
{
rb.velocity = new Vector3(velocity.x, velocity.y / 2f, velocity.z);
}
Invoke("ResetJump", jumpCooldown);
canDoubleJump = false;
}
}
anyways, I think your idea is great, hope this game will come out well
@@Ardens. DONT DO IT! YOU WILL BE HARASSED BY KARLSON KARENS
I love your videos my friend and I am proud to be one of the first 200 people to watch this video, so you can feel my sincerity
I do ..I appreciate you
Hey man, love to see you uploading again! I think your game has lots of potential so keep it up. The mechanics are pretty fun but I can't stop myself form thinking how cool would it be to have some sort of grapple hook. Added to the burst it cold give so much depth to the movement! It's just a suggestion haha so please go on. Take care and cya soon
I love the suggestions; you're the second person I've seen to say that. And thank you.
0:10
nah.., you are videos are just good man 😂
keep it up!! 🔥
will do :)
idek how I got here but now I'm intrigued
bruh, you jump on the deep end being aggressive to your viewers... love it!! 🤣
Really cool video! love the memes, really nice editing and it was hilarious and entertaining!! proud of you dude! Keep it up!
brooo I'm happy to see that you're still with us 😂 I'm glad and thank you, I will
Ay ardens i like your videos i think u have potential. Pls keep going!
The quaternion bit had me laughing.
We've all been there at one point of time questioning what the fvck that is
your videos are motivation for me
That awsome to know, keep it up!
I feel like the platforms being tilted while standing on it would feel really natural as you're in a void with low gravity
Definitely watching 20 more times. KEEP GOING!!
you are so underrated
Hey man, its great to see you back and your videos are really entertaining! Waiting for the next video!
I’m glad you’re posting! Your content is great 🙌 Keep going 🙏
I love your content so much specially your videos style... like you combine animation (Three images only but still counts) and Good totally original content which you really DID NOT steal from anyone else (hint: Anyone who use unity) But for real I will rate your videos 11/10
much thanks, I'll try my best to keep your interest
wanna collab probabbly no but maybe... no? okay but maybe?... no? idc... wait what was that?... no? okay...
Those sound effects, were perfect..🤣🤣
9:40 oooooooooooh! If you could bounce off of those cubes 😍
Imagine, prospering those boxes and using them as small platforms that you can't stand on, but only pounce off them
that's actually a really cool concept and idea 💡
I love the forged in fire show reference
that sweaty timelapse is golden
Woooo let's goooo
What a cool video idea and very good execution!!
Thank you very much!!
@@Ardens. I never really got into unity. It was way to difficult for me.
NEW VID. Finally
that a good game its perfect if you can do 3d modeling,physics,etc it is beatifull
3:40
as someone who has also tried using a game engine and having to deal with quaternions, I, too, can relate to the pain of not knowing what the fuck a quaternion is.
3b1b has a video on it...
finally you are back, i love your videos
Ayyy More -threats- Videos, I will be watching your videos with great interest
3:41 this make me laugh so loud , i like your humor
7:57 i can't believe you actully added it to the game😂🤣
The sound of firing made me cry🤣🤣🤣🤣
Imagine if there was a drug that would keep you alive but make you dream lucid forever.
I'm french and i love it !!!
yoooo he’s back
Your videos are fire keep it up!!!!
Thanks! Will do!!!
just for you I subscribe to this fucking channel with its good content and anecdotes that I like, in a few words "I like your videos"
that makes me happy :)
welcome back :)
happy to be :)
Bro i love your videos ♥️♥️
I'm glad you do :)
40k eyes now lol
Yh I noticed lol I didn't want to redo the recording
I'm going to rewatch all your video 😂😂
Imagine spinbot on this piece of spoon
thanks for uploading video (lol)
also one thing that you do good is you show all code. means no one can copy your game but the problem is occurring when programming you solve it by see your code.
and ya when project complete you can upgrade by doing open source ( Waring : don't do open source at this point because .....)
also this all was suggesting for help to you
bye and ya thanks for give funny and informative video.
where you live ? - what is your age ?
Thanks for the tip! And I live in the US - 19yrs old
This game sounds pretty good I'm pretty excited
Just a heads up: start working on multiplier now, because later it will be too late and you will have to rewrite every system and script in your game
or just give up
😮💨 I know.. I will... thank you
Better than cyberpunk tbh
I just started game development a few days ago and i just saw ur channel and i really hope it grows even more cuz u really deserve it!
I appreciate that 🙌 Thank you.. wish you the best on your learning journey
@@Ardens. thx
Good work
0:38 as a guy with only one eye, I... didn't see that coming 😅
Ohhhh no 😭 hopefully I didn't offend you.. it's all in good fun 😅
Haha no didn't feel offended 😅 had a good laugh
You didnt see it coming... Literally
Minecraft Spleef is 10 years ahead of you lol
Never heard of it lol..I just checked & I think there's more differences than similarities. It's a big world .. I'm trying my best to be original
@@Ardens. LOL yeah the original idea is kinda different but ppl have been makin all sorts of variations over the years, coming rlly close. xD But no problem at all, I like the game and ur videos are great!
Welcome back bro :)
ok i’m downloading your game into my brain and imma play tonight hope this work.. gn i subscribed
i downloaded your lucid dream haha lol
because i don’t have computer..
I still don't understand how the 12 minute video feel like a RUclips short
good job buddy
Thank you
9:58 wth happened with the cubes 💀
3:09-3:48 best scene
bro just made riochet from 2000 but in unity💀
lol your videos are great , thanks for making this
bro ure containts are so pro that i thought u have millions of sub bro u cool keep hard working
you're too kind :) thank you I will
For the algorithm
Love this
Yup first
i am the 37th commenter. FEELING PROUD
this video funny af keep it up
I'm glad you thought so, I will
Nice
I think u need to use rotor
i think this game needs no recoil,cuz all recoil goes in ur body,launcing u in opposite direction u shooting,only for game feel better just do animation where gun goes back and all.
Your videos are funny :)
thank you :)
@@Ardens. wlcm xD
I like it so much!!
thanks!!
really cool idea
Ur back...
yes
Love it
It would not end well if I made a game from my lucid dream 💀💀
bro me cant capture the universe rn me sad
2:10 XD
sonic wave
Fu**
I gona die
It's my second video! 😬
You got 30 sec 🔫
glhf with multiplayer
lol
My brother its a 3d modeler, he can help you
karlsons idia
Oink oink
braulala 3d lol
third
Wait its all clickbate :( I really hopped it was a dream turning on a game
No, it is based on a dream I had
660 views
No
Why nerd face
UGH! Everything is so....redundant🤢
you're.. annoying 😂
Nice