Hooman [SFM]
2:26
Ай бұрын
I Made an Oopsie...
4:41
Ай бұрын
We Need To Talk
4:25
Ай бұрын
Пікірлер
@SloppyNuts898
@SloppyNuts898 Минут бұрын
"make sure to back up your projects" ...
@CaptinnDuck
@CaptinnDuck 9 сағат бұрын
I made a weeping angel with one of your tutorials I just wanted to know if this would get the weeping angel to move when I blink
@ZeldaGamesForever
@ZeldaGamesForever 19 сағат бұрын
I would like you to continue with this series, and for example to make more methods of passing levels. For example, looking for a code to open a door... Thank you very much for your series, it helped me a lot. You earn a sub :)
@the_blue_hole
@the_blue_hole 23 сағат бұрын
Was on tutorial 14 then i want my friend to test it and i lost my level tscn so i just scraped it sadly womp womp i guess
@greentophatman5162
@greentophatman5162 Күн бұрын
When I press ctrl, nothing happens, and my height just changes in the inspector
@Wtrmlnrnd
@Wtrmlnrnd Күн бұрын
hey um when ever i try to shoot i get the error ; UnassignedReferenceException: The variable bulletSpawn of NewMonoBehaviourScript has not been assigned. You probably need to assign the bulletSpawn variable of the NewMonoBehaviourScript script in the inspector. anyone know how to help
@Wtrmlnrnd
@Wtrmlnrnd Күн бұрын
goodol gunny wunny
@MOBTVNEWS
@MOBTVNEWS Күн бұрын
hey omogonix i liked your tutorial very mutsh thanks -A random big fan-
@Bounceleenaforevah
@Bounceleenaforevah 3 күн бұрын
this tutorial made me use godot more thank u 🫶🫶🫶
@theAzumi
@theAzumi 3 күн бұрын
Thank you!
@iappear852
@iappear852 3 күн бұрын
Sick!
@pro-pb1cq
@pro-pb1cq 3 күн бұрын
29:29. How to fix the problem Invalid get index global_transform (on base: null instance) pls halp
@nikkezi
@nikkezi 3 күн бұрын
Thank you so much! Definitely got a new subscribe.
@nagger-i
@nagger-i 3 күн бұрын
skizzler!
@retropursuit992
@retropursuit992 3 күн бұрын
*laughs* Thank you!
@Whimery
@Whimery 4 күн бұрын
I have to be really close to pick it up
@PoopyHeady
@PoopyHeady 2 күн бұрын
add bigger colliders.
@Whimery
@Whimery 2 күн бұрын
@ thanks
@vitobrx
@vitobrx 5 күн бұрын
Thank you for this tutorial series. It's so simple to understand the code flow and how you are applying it. IMO other tutorials should work in a more simplistic way, for better understanding other than going straightfoward to the "right way" of coding. If it works, that's the right way. It's simple, do it first. Later, make it better.
@Walking_Otherwhere
@Walking_Otherwhere 5 күн бұрын
Thanks to you, I'm falling in love w Godot! Sprint Code (Replace 7.5 with anything you like): if Input.is_action_pressed("sprint"): SPEED = 7.5 else: SPEED = 5.0
@Walking_Otherwhere
@Walking_Otherwhere 5 күн бұрын
Thank you so much, I love these tutorials! By the way: Instead of dragging the Player/Character into the scene, click "Instantiate". It will spawn the Player into the level, and you can drag where the Character will spawn.
@heyitsashru
@heyitsashru 5 күн бұрын
You're so underrated, dude! I loved the demo of "You Are Liam: Shadow Memories"! Keep rocking, bro!
@imkory-z8v
@imkory-z8v 6 күн бұрын
heyyy does anyone know how to put picture in mobile?
@WolfBiteGames-official
@WolfBiteGames-official 6 күн бұрын
Hey, it's good to see that you can run these mordern games in your new laptop. And can you make a small tutorial on how to install the makehuman software in 2024.I want to use it and can't find a tutorial😢
@scorpiowisp1750
@scorpiowisp1750 6 күн бұрын
can i ask what version of unity you using ?
@Totorocot
@Totorocot 6 күн бұрын
20:55 constant can’t change,variables can
@Mario25000-q
@Mario25000-q 6 күн бұрын
Heey! just wondering, are you going to make more videos about playing games made by your subscribers? and if you do where can I submit one? (Cool video btw)
@Omogonix
@Omogonix 4 күн бұрын
Yes, I will be doing one at some point! If you go into the description of one of my videos where I play viewers' games, you'll see a link to a Google Form where you can submit your game :)
@STEX23
@STEX23 6 күн бұрын
Awesome that you can run these games with good settings! Cooool
@ahmadaboali2805
@ahmadaboali2805 6 күн бұрын
Hey guys here and yeah there is a Basic PlayerMovement script if you need copy it : using UnityEngine; public class PlayerMovement : MonoBehaviour { public float moveSpeed = 5f; public float jumpForce = 5f; public Transform groundCheck; public LayerMask groundLayer; private Rigidbody2D rb; private bool isGrounded; void Start() { rb = GetComponent<Rigidbody2D>(); } void Update() { Move(); Jump(); } private void Move() { float moveInput = Input.GetAxis("Horizontal"); rb.velocity = new Vector2(moveInput * moveSpeed, rb.velocity.y); } private void Jump() { isGrounded = Physics2D.OverlapCircle(groundCheck.position, 0.1f, groundLayer); if (isGrounded && Input.GetButtonDown("Jump")) { rb.AddForce(Vector2.up * jumpForce, ForceMode2D.Impulse); } } }
@informatiqueisfutur-ve2ro
@informatiqueisfutur-ve2ro 6 күн бұрын
thxxxxxxxxxxxxxxxxxx
@Siromakha
@Siromakha 7 күн бұрын
Why is your visual studio in light mode? Like wtf bro
@RoasteddApel
@RoasteddApel 8 күн бұрын
Pls make a tutorial to make a full body system
@animanoir
@animanoir 8 күн бұрын
Kaboom!
@TheRealKaiProton
@TheRealKaiProton 8 күн бұрын
For sprinting I did it slightly different, I added a sprint var, as a float. and above if direction added: var real_speed = speed if Input.is_action_pressed("BD"): real_speed = sprint changed the SPEED in the if direction block to real_speed, and thats it, when held the player sprints, when let go the player walks, hopefully this wont impact further down the line.
@IlmijaBekiri
@IlmijaBekiri 8 күн бұрын
Thanks man you saved me soo much time i thaught i had to delete my whole map!
@TheWizz03
@TheWizz03 8 күн бұрын
Can you make a tutorial about how to make a qte in unity ???
@Parteek-m9z
@Parteek-m9z 9 күн бұрын
Thank you so much bro❤❤❤
@UmarO
@UmarO 9 күн бұрын
that was kinda funny, looks like you enjoyed making it! lol
@STEX23
@STEX23 10 күн бұрын
Finally, someone has figured out the skibidi toilet function!