Adding more mechanics to my game
2:18
Stingray VTOL video preview
0:50
Жыл бұрын
Trial Bike Practice
1:08
Жыл бұрын
Trial bike game dev UE5
3:24
2 жыл бұрын
Trial Bike Game UE5 Game Dev Diary
15:18
Trial Training 03
1:01
2 жыл бұрын
Trial Training 02
0:49
2 жыл бұрын
Oh My Ship Devlog Week 09
1:53
2 жыл бұрын
Oh My Ship Devlog Week 06 - 07
4:39
2 жыл бұрын
OhMyShipDevlogWeek05 - Stage WIP
1:38
Trial training
2:02
3 жыл бұрын
Namaka Mech WIP Mechanism Test
0:29
7 жыл бұрын
Пікірлер
@odemilsonsconieczni4728
@odemilsonsconieczni4728 3 күн бұрын
Is there a way to limit wheel traction? to make a rear wheel drive vehicle for example.
@amirhm6459
@amirhm6459 2 күн бұрын
I have same question actually, the setting should be in per wheel basis. However, I couldn't find the variable to turn off receive drive input, even in the VehicleSimWheelComponent.cpp. DriveTorque variable is deep in the engine. I guess we still need to wait until this plugin is fully implemented.
@odemilsonsconieczni4728
@odemilsonsconieczni4728 Күн бұрын
@amirhm6459 unfortunately, yes :/ I hope they release it soon.
@Battal_Gazi
@Battal_Gazi 8 күн бұрын
Gj go on pls
@Battal_Gazi
@Battal_Gazi 8 күн бұрын
As a Battletech/Mechwarrior fan, i found this exciting
@amirhm6459
@amirhm6459 5 күн бұрын
Thank you
@ryanke6695
@ryanke6695 16 күн бұрын
Hi where is the plugin example? I found the content empty.
@amirhm6459
@amirhm6459 15 күн бұрын
Hello, the plugin example is as separate plugin, search: "chaos modular vehicle examples" in the plugin window
@ryanke6695
@ryanke6695 14 күн бұрын
@@amirhm6459 Thanks mate
@odemilsonsconieczni4728
@odemilsonsconieczni4728 17 күн бұрын
Amazing, finally someone made this work haha, thanks!
@amirhm6459
@amirhm6459 16 күн бұрын
thank you, hope it's helps
@amirhm6459
@amirhm6459 19 күн бұрын
Grab the finished project here if you need: amirhm.gumroad.com/l/hjhnnb
@vast634
@vast634 Ай бұрын
Nice spaceship model. I like the mechanical animations.
@amirhm6459
@amirhm6459 Ай бұрын
Thank you
@HitrylogyGameDev
@HitrylogyGameDev Ай бұрын
This is a fantastic procedural tool! The placement of buildings and stairs seems intuitive and easy to use. Scattering small props using physics calculations, then fixing them below a certain velocity is a great idea! I'd never thought of a method like this.
@amirhm6459
@amirhm6459 Ай бұрын
@@HitrylogyGameDev Thank you, the logic is simple actually, just like 2d tilemap but in 3d using modular pieces.
@HitrylogyGameDev
@HitrylogyGameDev Ай бұрын
@@amirhm6459 Thank you! I'll start by thinking about the logic in 2D.
@liontamerinteractive3976
@liontamerinteractive3976 Ай бұрын
I'm jealous
@amirhm6459
@amirhm6459 Ай бұрын
haha thank you
@ロボ軍団作りたい人
@ロボ軍団作りたい人 2 ай бұрын
Mech Warrior?😃😃😃
@amirhm6459
@amirhm6459 2 ай бұрын
@@ロボ軍団作りたい人 yeah similar tank walker mech style
@ロボ軍団作りたい人
@ロボ軍団作りたい人 2 ай бұрын
☺☺☺👌👌👌
@amirhm6459
@amirhm6459 2 ай бұрын
@@ロボ軍団作りたい人 thank you
@zao7035
@zao7035 2 ай бұрын
Are the individual body parts separate objects attached to a invisible skeleton? or is this some kind of shader magic?
@amirhm6459
@amirhm6459 2 ай бұрын
@@zao7035 It is shader, only use one skinned mesh, one material instance and one skeleton. The booleans to turn on off is from the shader.
@zao7035
@zao7035 2 ай бұрын
@@amirhm6459 Interesting, but how does the mech know which body part should be taking damage? And how does the bullet know if it should ignore arms that has already been destroyed?
@amirhm6459
@amirhm6459 2 ай бұрын
@@zao7035 Great question, I make the system as individual components. There is bullet components, health components with colliders for each body parts, and shader component. Each body parts have individual colliders parented to the armature bones. The bullet can detect collision with the body colliders only, when the collision happens, the bullet will call the collider component to perform damage based of the bullet power. The body collider also will set the shader parameters if the body part health is below zero. It definitely takes more time to setup system like this, but I found component based system is very scalable in long terms and every change or upgrade on the component will not make other components broken
@amirhm6459
@amirhm6459 2 ай бұрын
And to make the bullet not detecting if the body part is broken. Simply I deactivate the collider in health component when the health component is below zero. Specific for chest health component if the health of this below zero, will triggering the death sequence
@zao7035
@zao7035 2 ай бұрын
@@amirhm6459 Thank you for sharing, I made a similar system a while back using an entirely opposite approach, I used separate mesh for separate body part, and I used inheritance instead of composition. And I now have a sudden urge to rewrite my entire project...
@SeraphimSimu
@SeraphimSimu 2 ай бұрын
LETS GOOOO MECH CONTENT IN GODOT MY GOAT!
@amirhm6459
@amirhm6459 2 ай бұрын
Many thanks!!
@007Kevler
@007Kevler 2 ай бұрын
Looks good. Do you want little advise?
@amirhm6459
@amirhm6459 2 ай бұрын
Yeah sure any feedback is appreciated. I can't implement all the feedbacks for many reasons. However, I will keep in mind and make your feedback as considerations to help me to make better game
@007Kevler
@007Kevler 2 ай бұрын
@@amirhm6459 I highly recommend finding old Blizzard materials from the Overwatch developers. I really liked how they talked about the importance of the characters' gait. It can say a lot about the character himself, about how dangerous he is. Bastion's movement is a good example of bipedal movement. Unfortunately, I cannot find the exact title of the video or article. In the game you aim to show off a war machine. A heavy mech with weapons capable of penetrating heavy armor. Study the video of how tanks move. They cannot brake or accelerate instantly. Small and light details on them also allow you to clearly show the weight and acceleration of the mech. The guns of tanks and ships have a stabilization system. Although the frame can oscillate wildly, the weapon remains almost motionless. Divide the combat mech's movement into three separate parts. While the legs will move the most, the body should sway less as you walk. And your hands should remain practically motionless. If the HUD elements also move differently, this will create a great effect that the player is controlling the mech and not just seeing a stationary drawing on the monitor. HUD is not just information about how many lives and ammo you have. Through it you can convey the footsteps of a mech, the recoil of a gun shot, or a hit on you. Recoil of guns. Just look at the video "[1440P][Overwatch][60FPS] New Bastion: WHAT IS THIS BULLET SPREAD?" This is a great example of what a rapid fire weapon's recoil compensator would look like on a mech. Artillery is an excellent material for inspiration when you want to show how a powerful weapon fires. I hope these observations will help you do what you want even better.
@revlouder5865
@revlouder5865 2 ай бұрын
Btw if you need sdx for the guns i can help youw oth that for free
@amirhm6459
@amirhm6459 2 ай бұрын
Big thanks, really appreciated. I can't bother anyone for this project. When I need some and can give you something in return, I will ask you
@revlouder5865
@revlouder5865 2 ай бұрын
Yo im excited
@KWART_O_MANIA
@KWART_O_MANIA 2 ай бұрын
What is the goal of the game?
@amirhm6459
@amirhm6459 2 ай бұрын
The game will be mission based combat mech game like Armored Core (classic) or Mech Warrior story mode. There will be many missions, but for the demo (on the way) there will be just one or two for testing the gameplay and gathering feedback about the gameplay
@KWART_O_MANIA
@KWART_O_MANIA 2 ай бұрын
@@amirhm6459 That sounds awesome! A mech game like Armored Core or MechWarrior? I’m all for it! Having just one or two missions in the demo is a great idea- Can’t wait to see it in action!
@jak00bspyr72
@jak00bspyr72 2 ай бұрын
You should work on that running animation. You tried to make it look like a human would run, especially with these arms movements. It looks too organic, and these movements are unnecessary when the movement is completely mechanical. Especially if during that movement the gun barrels are pointed towards the ground and almost touch it. Imagine if the robot ran somewhere else then on an ideal, flat platform.
@amirhm6459
@amirhm6459 2 ай бұрын
Thank you for your feedback
@defuncthusky6649
@defuncthusky6649 2 ай бұрын
For the running animation if you can try to introduce a gait to the waist, and add slight counter twist to the torso and have the arms remained leveled pointing to the enemy. That will give q motion that makes sense while remaining tactical and mechanical
@jak00bspyr72
@jak00bspyr72 2 ай бұрын
@@defuncthusky6649 It would even be best if the guns remained perfectly leveled all the time no matter the movements, like cannons in modern tanks that are stabilised so the tank may shoot accurately while moving even on rough terrain.
@defuncthusky6649
@defuncthusky6649 2 ай бұрын
@@jak00bspyr72 the gun is leveled, ofc the guns will counter rotate from the shoulders as the torso twists. But this is a mech with moving limbs not a rigid tank with 3 limbs (chassis, turret, cannon), if you want stable running you need to move abit. Besides in tansk shooting while moving is not very common
@amirhm6459
@amirhm6459 2 ай бұрын
Thank you guys for the awesome discussions, the idea why the gun is not leveled when running is for gameplay reason, it is the substitute of dashing. And the mech cannot shooting during running It is mean for fast positioning without making it too powerful and make the walking obsolete. Thanks again, I will update the animations to make it better.
@PurpleMushroomHead2
@PurpleMushroomHead2 2 ай бұрын
Honestly looks great
@amirhm6459
@amirhm6459 2 ай бұрын
Thank you
@krishonk7754
@krishonk7754 2 ай бұрын
Please continue, I insist!
@amirhm6459
@amirhm6459 2 ай бұрын
@@krishonk7754 Sir yes sir!
@darknetworld
@darknetworld 2 ай бұрын
It feel more real that good.
@amirhm6459
@amirhm6459 2 ай бұрын
Thank you!
@Drakuba
@Drakuba 2 ай бұрын
i hope you plan on adding component damage, whats the point of mechgame if you cant cripple your opponents or get crippled in a fight but still finishing the mission reagardless? healthbars are lame
@amirhm6459
@amirhm6459 2 ай бұрын
@@Drakuba thank you for the feedback, yes this is important feature and was planned. However it will takes time to implement because there still tons of works to do in other aspects
@Drakuba
@Drakuba 2 ай бұрын
@@amirhm6459 neat👍
@nawhz6292
@nawhz6292 3 ай бұрын
Sheesh on a leash! Armored core 4 life
@amirhm6459
@amirhm6459 3 ай бұрын
Let's goo!!!
@jupiterbjy
@jupiterbjy 3 ай бұрын
I root for this, great work
@amirhm6459
@amirhm6459 3 ай бұрын
Thank you for your support
@Alucard_Seven
@Alucard_Seven 3 ай бұрын
looks good dude, GL with this project.
@amirhm6459
@amirhm6459 3 ай бұрын
Thanks man!! Appreciated!
@EagleTopGaming
@EagleTopGaming 3 ай бұрын
Looking pretty cool.
@amirhm6459
@amirhm6459 3 ай бұрын
Thank you!!
@tomrobin9423
@tomrobin9423 7 ай бұрын
Cool!
@amirhm6459
@amirhm6459 7 ай бұрын
Thank you
@FariCorporations
@FariCorporations 8 ай бұрын
Nice!
@amirhm6459
@amirhm6459 8 ай бұрын
Thanks you
@mirandaart3012
@mirandaart3012 8 ай бұрын
love the character, and i can only imagine what the environment will look like! good job and cant wait to see it progress!
@amirhm6459
@amirhm6459 8 ай бұрын
Thank you, still working on it
@Tá_Sério
@Tá_Sério 8 ай бұрын
A jornada do cubo de pau
@jupi0679
@jupi0679 8 ай бұрын
That looks absolutely amazing, especially as you walk out of the pipe and the space opens up before you!
@amirhm6459
@amirhm6459 8 ай бұрын
Thank you, I'm glad you like
@hocineache7033
@hocineache7033 8 ай бұрын
Amazing, can't wait to see what it will evolve to
@amirhm6459
@amirhm6459 8 ай бұрын
Thank you for the support
@sinksinkswim
@sinksinkswim 8 ай бұрын
Very cool looking level design! I think the character could bounce a little more while running, as that would be more in keeping with how it has a breathing animation when idling.
@amirhm6459
@amirhm6459 8 ай бұрын
That's really great idea, I will try to add more bounce while keep the movements robotic, thank you.
@Slappynote
@Slappynote 8 ай бұрын
That looks awesome! Keep it up!
@amirhm6459
@amirhm6459 8 ай бұрын
Thank you
@YelloTheCreator
@YelloTheCreator 10 ай бұрын
Looks like it's made for Carmageddon Max Damage mod. But I actually like this design! :D
@amirhm6459
@amirhm6459 10 ай бұрын
Thank you
@ProjProd
@ProjProd 11 ай бұрын
You've done a great job bro! The video is so liiiit🔥🔥! If you're interested in Unreal Engine 5 and all its subtleties, don't hesitate to take a look at the page :) I hope it will help you get the most out of it!
@amirhm6459
@amirhm6459 11 ай бұрын
Thank you for your kind words. Wow, your channel is really fresh, I will watch later and learn more about UE from your videos, thank you.
@user-jw8jn7lh8c
@user-jw8jn7lh8c Жыл бұрын
comedically chummy vehicle
@amirhm6459
@amirhm6459 Жыл бұрын
Thank you
@johntestement969
@johntestement969 Жыл бұрын
Amazing work! Are you willing to share your blueprints?
@amirhm6459
@amirhm6459 Жыл бұрын
Thank you. Yeah I like to share the blueprint, but this physics setup is very trial bike specific. This is not good base for normal bike style like bmx or mtb. Maybe I will try to make physics bike setup for more normal bike so people can use it as base.
@johntestement969
@johntestement969 Жыл бұрын
@@amirhm6459 Thanks for the reply. I would love to see the blueprints as they are. I am learning this stuff and would love to learn from your work. I am creating a Bali mountain bike experience as a learning project.
@amirhm6459
@amirhm6459 Жыл бұрын
@@johntestement969 This trial bike project is not just a single blueprint, I make the wheel, the bike, the balancing, the weight shifting, the rider and so on, as separate blueprints. It is too complicated for learning. If you really want to learn, you can follow this unreal vehicle physics user guide: docs.unrealengine.com/5.2/en-US/how-to-set-up-vehicles-in-unreal-engine/ It is easy to follow. In this early video I use the unreal vehicle physics before I make my own setup: kzbin.info/www/bejne/enSvfqeEor2rf80
@Bengkelmasung
@Bengkelmasung 2 жыл бұрын
Terbaik sampean mas, gk sabar buat maininya kalau udh bisa didownload ❤❤
@amirhm6459
@amirhm6459 2 жыл бұрын
Terimakasih mas Ung 🙏🙏🙏
@norrisallison1725
@norrisallison1725 2 жыл бұрын
promosm
@OldTires
@OldTires 2 жыл бұрын
looks awesome!
@amirhm6459
@amirhm6459 2 жыл бұрын
Thank you!!
@Undeblfigh
@Undeblfigh 2 жыл бұрын
Finished yet
@amirhm6459
@amirhm6459 2 жыл бұрын
Sadly no, I decided to abandon this project long time ago. And this year I started to make game again, this time is SHMUP game to learn Unreal Engine. Maybe in the future I will make beat em up game again
@anitaswier4906
@anitaswier4906 2 жыл бұрын
🏃 p̳r̳o̳m̳o̳s̳m̳
@BboySalamon
@BboySalamon 5 жыл бұрын
Very nice bro, keep going!
@vroneymahoney
@vroneymahoney 7 жыл бұрын
great work!
@amirhm6459
@amirhm6459 7 жыл бұрын
Thank you Spatzi :)
@amirhm6459
@amirhm6459 9 жыл бұрын
i just 3d artis with less skill on the programming, and i realize fighting game is very complex on programming, so its need good programmer to finish this, for now i not have enough time but if someone want to continue this game i will happy, all the game ideas still on my head, i can write downt to GDD
@domnetrix
@domnetrix 9 жыл бұрын
it honestly has a lot of potential
@domnetrix
@domnetrix 9 жыл бұрын
dude this looks like a good game why?? at least leave it with a community so people can continue with it. its good work would really be a shame to let it go to waste
@amirhm6459
@amirhm6459 9 жыл бұрын
thankyou guru :D
@LightwaveGuru
@LightwaveGuru 9 жыл бұрын
Bingo! :)