Hey David. Just want to drop a thank you for making such a great tutorial series. I am helping my girlfriend with a game-making assignment and we have been fumbling around trying to pierce things together without much success. You literally saved us from a big fat F.
New to unity and thinking of making horror game. Just discovered this tutorial now, skipped to end just to see what happens in the 13 minutes, wow, movement??? Fantastic. I'll be sure to use your tutorial tomorrow when I start my project!
Glad to hear that my friend! On top of doing the tutorial everything we go Over, scripts, models, sound effects, etc. I will have up for a download for free for everyone
I have been working on a unity project and this is my first time using it and it so happens you are explaining how to create the environment and fos camera and player control, which i have been trying to implement, into my game, im trying to do a 2d horror pixel but with 3d assets and in first person, its a bit of both 2d and 3d. Thank you making this , now i can make more progress!
@@user1productions883 They are extermely helpful, I am just having issues with the fps controller working and the scripts wotking properly, i am also usin the retro framerate ps1 style script as well for the animations,
@@Jhare93 thats pretty cool! Ive always wanted to make a retro ps1 type game. I find the style of them to be really interesting! what problems are you having? maybe I can help you?
@@user1productions883 I got an cs0619 gui error when i imported the assets yopu are using, im trying to make the game go from 2d to 3d, but when i also place the cube like you did it doenst show up on mine like yours either it just shows a cube wire frame not the soldi object itself i should clarify i am using the newest version 2020.3.26f1. i just reopened unity and it wants me to enter safe mode for my project due to script compilation errors.
David, these assets are very old and I dont know what to do can you plese tell me about an alternative for this? (They are not on asset strore any more)
Hey David! Thanks for the amazing tutorials. I really appreciate how you are focusing on the mechanics and not trying to show us how to create atmosphere. This is incredibly useful. Much appreciated👍🏻!
Hey David. I just found the tutorial just now, I went to find the standard asset you used and I couldn't find it. Is there a good substitute for the asset you used? Thanks
Hey thanks for the tip but I have a problem Everytime When i go to asset store and search Standard asset it always show starter assets. Please can you actually help me.
might be a bug within the editor somewhere, feel free to join our discord server and either myself or another game developer would be more than happy to help out!
I am trying to make my own horror game and this is being very helpful! Although I can’t get the standard assets. I can’t find them in the asset store anymore
Its changed like everything since then. Your character, which i mention below, i think even the standard assets itself in some things, because it happened to me too, and its called now STARTER ASSETS. But im stilly having issues with that, like if youre setting up the FPS controller, which you cant find like that, (it stands from like 3 parts) there is a "player capsule" which is your character, it is really annoying, and it plays no audio. I just wanted to make a game, but this making my work really hard, im sure yours to.
Also i dont have sound or maybe if i call this "audio source" for player, im not wrong. So this new thing completely fucked up. I see people doing scripts for it, when this guy doesnt, he has the starter asset (standard asset, which is not the same since then). Also got my cubes, what he created, destroyed. Why? What do i did wrong all the times? Why is it so fucked up, and complicate, when the guy (Daniel) just made it like that??!
I surely hope so too! We have a discord server if you need help with anything and if you want to see certain stuff done in the tutorials feel free to ask !
@@user1productions883 oh xdd im fan of all of them , and michael myers ofc , i have a question to , today i started creating my game, i added walls and ground also a vhs store , but when i try putting the first person script it doesnt work i tried everything should i delete everything ?
Hey man. Where do you recommend I start learning for coding? I've got the basics down for asset design, audio, ect. I just dont know where to start with making the game... _game_ ,if that makes sense. I guess I should say, I know somewhat how to code. I just dont know what to code.
I basically learned how to code from trial and error, watching hundreds of tutorials, and reading many documentation’s. It’s definitely hard to get a grasp of but once you get it you’ll never forget how to
Yo so i have plans of a horror game and this is just what im looking for! But when i look up "Standard" in the shop the thing in the video doesn't come up, tried everything. And yes, i use the same version as you.
What standard package do we use now in 2022 ? ive been trying to follow the tutorial but im getting a whole slew of errors even at the beginning when draggin and dropping the first person controller, ive got no idea what to do.
Yes so in the unity standard assets there’s a code that is no longer supported, I beleive it’s button activator ? You just delete it from assets and it should be fixed
PEOPLE! When you download the starter asset and apply the script with the playercontroller you can avoid the walking slide doing this... go to the script and look for this line! private void GetInput(out float speed) { // Read input
float horizontal = CrossPlatformInputManager.GetAxis("Horizontal"); float vertical = CrossPlatformInputManager.GetAxis("Vertical"); bool waswalking = m_IsWalking; What you have to do is just add a Raw on the axis and then save the script and problem solve ! private void GetInput(out float speed) { // Read input // Modifique los Axis a "Raw" con ese cambio pude eliminar el retraso en los pasos. float horizontal = CrossPlatformInputManager.GetAxisRaw("Horizontal"); float vertical = CrossPlatformInputManager.GetAxisRaw("Vertical"); bool waswalking = m_IsWalking; Hope this help you!
I got to many errors importing the asset to Unity 2020.3. So I will just use the Unity free First person controller. By the way, thank you for the tutorial series.
FIX PLAYER MOVING AFTER LETTING GO OF MOVEMENT KEY: Open up the FirstPersonController script and on lines 208 & 209 replace float horizontal = CrossPlatformInputManager.GetAxis("Horizontal"); with float horizontal = CrossPlatformInputManager.GetAxisRaw("Horizontal") and float vertical = CrossPlatformInputManager.GetAxis("Vertical"); with float vertical = CrossPlatformInputManager.GetAxisRaw("Vertical");
I benefited a lot from your explanation I am working on a horror game similar to Fnaf, and I want to learn more about making games. Can I contact you to help me make this game?
I’m try to make my first game and I want it to be horror. I was trying to learn unreal engine 5 but there are no good tutorials on this topic, is unity better for horror games? Which one should I lean?
If you mean importing assets that you have got from the asset store. Go to windows, package manager, they should show there. If they dont show, go into the asset store, my assets, then click open in unity. Hope this helps
Please help me! Unity says my keyboard and mouse aren't supported in input manager. They work in editor but when I press "play", nothing happens with the keyboard buttons and the mouse. My keyboard is not that old and my mouse is ever newer (ASUS TUF M3). Please give me an idea. Help me so I can credit you in my game which is going to be a hit for sure when it comes out if I can finish it :)
I am working on a horror game in Unity, using HDRP, and I am struggling to create an effect for my enemy. I wanted to make it so it darkens anything it sees. I was hoping to use a spotlight and give it a negative value, but Unity didn't like that. All my research indicated that the only way for me to achieve this would be to edit the render pipeline itself.
i really wanna follow this tutorial because it looks promising but i can't seem to find that asset, is there something i'm missing or an alternative i can use?
Hey David. Just want to drop a thank you for making such a great tutorial series. I am helping my girlfriend with a game-making assignment and we have been fumbling around trying to pierce things together without much success. You literally saved us from a big fat F.
New to unity and thinking of making horror game. Just discovered this tutorial now, skipped to end just to see what happens in the 13 minutes, wow, movement??? Fantastic. I'll be sure to use your tutorial tomorrow when I start my project!
Glad to hear that my friend! On top of doing the tutorial everything we go Over, scripts, models, sound effects, etc. I will have up for a download for free for everyone
@@user1productions883 legend ❤
@@user1productions883 hey! you probably wont see this, but could you do an updated tutorial? i cant find the standard assets pack in unity asset store
I’ve wanted to make a game for 2 weeks, I already got some help and the production and I just got unity. Thank you
its been 2 years.. u made it?
I'm a beginner game dev and your videos really help thanks!!
I’m glad to hear that! Thank you for the support
faxs facts bro lol
If you can't find the standard asset just look up modular first person controller its really good
life saver
Your work is fantastic! I thought Unity was too complex for me, but you're making it look easy, big thanks!
Hello, how are you doing? Progress on your game?
@@Pink0face just do it bro
Im a beginner and Its really useful to have a "from scratch" and tips based guide.
I’m glad your finding it useful my friend :) appreciate the support !
I have been working on a unity project and this is my first time using it and it so happens you are explaining how to create the environment and fos camera and player control, which i have been trying to implement, into my game, im trying to do a 2d horror pixel but with 3d assets and in first person, its a bit of both 2d and 3d. Thank you making this , now i can make more progress!
I’m glad my tutorials are helpful to you my friend ! I really appreciate the comment !
@@user1productions883 They are extermely helpful, I am just having issues with the fps controller working and the scripts wotking properly, i am also usin the retro framerate ps1 style script as well for the animations,
@@Jhare93 thats pretty cool! Ive always wanted to make a retro ps1 type game. I find the style of them to be really interesting! what problems are you having? maybe I can help you?
@@user1productions883 I got an cs0619 gui error when i imported the assets yopu are using, im trying to make the game go from 2d to 3d, but when i also place the cube like you did it doenst show up on mine like yours either it just shows a cube wire frame not the soldi object itself i should clarify i am using the newest version 2020.3.26f1. i just reopened unity and it wants me to enter safe mode for my project due to script compilation errors.
@@Jhare93 Which script is throwing errors?
Thank you so much for these tutorials! I’m a beginner and would love to create a horror game and I’m so glad I came across your videos!
This is really cool! In the next part can you make a fully operable door?
Yes I do plan on doing a tutorial on doors in an upcoming tutorial ! Stay tuned !
bro these assets are really old, i dont even see them on the store anymore
There’s a GitHub page that has the assets
Any alternatives found?
@@snarktips4667 on the next video he has a Google drive wit it I think
@@NextLevelAnonymity search starter assets - first person in unity asset stor
What does a look?
Man, You Deserve 100 + the amount of subscribers you have right now
Really appreciate it my friend, hope you stay around till i get to a million
saving my life with this series i swear bro 🔥
I like the video, but i can´t find the standard assets pack from the store.
neither can I
same
This is one of the best tutorial out there! Thank you so much!
I learned faster with this tutorial than an other I have tried. Thanks!
Really appreciate the support my friend !
Good video 🎉
I'm trying to make my own horror game right now. Thanks for this series man! Good work!
easiest n best tutorial for beginner that i can find ..
great job dude :D
n thank you
Thank you so much !
Best tutorial EVER!!!
Yo thank you for these tutorials they are helping me a lot. You have earned yourself a sub. Keep up the good work.
3:04 I can’t find the same asset or whatever it is
did u ever find an asset?
So underrated im so happy that I just found your channel
Really appreciate it my friend
Hi, I have a question. Where do I find the standard asset pack you used? I can't seem to find it.
it was taken down it seems
@@SpicyElephant and now? what are we supposed to do? HAHAHAHAHAH
holy fuck you made the perfect series. respects
This is genuinely so helpful.
David, these assets are very old and I dont know what to do can you plese tell me about an alternative for this? (They are not on asset strore any more)
Hey David. I am making this in 2023 but the standard assets is not there in the asset store what to I do. Pls Help
same problem for me
search starter assets - first person in unity asset store
@@cowseye ok bro I will
Hey David! Thanks for the amazing tutorials. I really appreciate how you are focusing on the mechanics and not trying to show us how to create atmosphere. This is incredibly useful. Much appreciated👍🏻!
@Fire-boy Sorry, I didn't see your request. Glad you found it!
@Fire-boy That is the current FPS player controller. They also have a third person version. That is likely all you need for the tutorial.
I can not find the standard asset pack either
I am not able to find "Standard Assets"
Actually it's removed
Where the movement script? Help me please
It’s in the Unity Marketplace. It might not be compatible with Unity 5.
Hey David. I just found the tutorial just now, I went to find the standard asset you used and I couldn't find it. Is there a good substitute for the asset you used?
Thanks
Love the no reply. Does that mean this tutorial is not worth following or is it easy to work around that?
hey. just started watching the tutorial, and i can´t find the "standard assets". can somebody help me, please?
Look up modular first person controller in the asset store it's really good
I checked - everything is clean
Thank you for the share
@user1productions883 I can't find the asset web page that you downloaded can you reply with a link? ♥
search starter assets - first person in unity asset store
Hi! Thanks for this! I needed a fast fps player and the basics of unity and this video delivered. Thanks!
Glad I could help out my friend
Super excited about this, subbed!!!
Just seen this channel, it’s good.
Hey really great tutorial, but i can't find the standard asset pack on unity!!
hello! i seen that recently unity moved the asset store to the web, and the standard assets pack isnt there anymore. what do i do?
Thanks sir, for so nice n so useful programs you are giving us God Almighty bless you n your family
Impressive. Let's see Paul Allen's FPS Controller.
Completed ur 500 likes mate
your the best!
can you please also put a link for the standard assets set bc i dont think it exists on the current version of unity I am using. Thank you
I do think the same, i haven't found the assets and don't know how to continue
I think they removed the standard assets off the store, where could I find a replacement?
did you find any alternatives?
@@hertiszeneli5834 its starter assets now
Hey thanks for the tip but I have a problem Everytime When i go to asset store and search Standard asset it always show starter assets. Please can you actually help me.
hey when i added fps controller thing and tried to give it a try the left and right are inverted
might be a bug within the editor somewhere, feel free to join our discord server and either myself or another game developer would be more than happy to help out!
@@user1productions883 Thank you a lot
good stuff
Thancks you are really helping me and my friends
realy like your vidio, but i cant find the asset you have coshen
I am trying to make my own horror game and this is being very helpful! Although I can’t get the standard assets. I can’t find them in the asset store anymore
same
same
Its changed like everything since then. Your character, which i mention below, i think even the standard assets itself in some things, because it happened to me too, and its called now STARTER ASSETS. But im stilly having issues with that, like if youre setting up the FPS controller, which you cant find like that, (it stands from like 3 parts) there is a "player capsule" which is your character, it is really annoying, and it plays no audio. I just wanted to make a game, but this making my work really hard, im sure yours to.
Also i dont have sound or maybe if i call this "audio source" for player, im not wrong. So this new thing completely fucked up. I see people doing scripts for it, when this guy doesnt, he has the starter asset (standard asset, which is not the same since then). Also got my cubes, what he created, destroyed. Why? What do i did wrong all the times? Why is it so fucked up, and complicate, when the guy (Daniel) just made it like that??!
this is my first time using unity i hope your video can help me :)
I surely hope so too! We have a discord server if you need help with anything and if you want to see certain stuff done in the tutorials feel free to ask !
hey david, a lot thanks to you for giving us such a good tutorial
Great step thank you...
Thank you for the support
fan of ur wallpaper
I have 3 monitors, my main is Jason, left is Freddy, and right is ghostface 😂❤️
@@user1productions883 oh xdd im fan of all of them , and michael myers ofc , i have a question to , today i started creating my game, i added walls and ground also a vhs store , but when i try putting the first person script it doesnt work i tried everything should i delete everything ?
nice tutorial
Thank you my friend, I really appreciate
Hey man. Where do you recommend I start learning for coding? I've got the basics down for asset design, audio, ect. I just dont know where to start with making the game... _game_ ,if that makes sense. I guess I should say, I know somewhat how to code. I just dont know what to code.
I basically learned how to code from trial and error, watching hundreds of tutorials, and reading many documentation’s. It’s definitely hard to get a grasp of but once you get it you’ll never forget how to
theres no standard asset
I could not find Standart Assets. Which other asset package you recommend ?
if i beat dark souls i can probably beat this challenge too
Hi iam a. New person and in unity we don.t have standerd asset pls help
Yo so i have plans of a horror game and this is just what im looking for! But when i look up "Standard" in the shop the thing in the video doesn't come up, tried everything. And yes, i use the same version as you.
same goes for me. standard assets doesn't appear on the asset store for some reason
good tutorial my dude
That Guy Thanks, I will look into it later.
Dude this is awesome I’m so stoked to try and make something going along with your videos
I can't find the asset that you are using, did it got removed?
what do i pick 3D or 3D sample sense one not tryna rush you but can you tell as soon you have a chance
Just the blank 3D scene
@@user1productions883 tyyy
What standard package do we use now in 2022 ? ive been trying to follow the tutorial but im getting a whole slew of errors even at the beginning when draggin and dropping the first person controller, ive got no idea what to do.
Yes so in the unity standard assets there’s a code that is no longer supported, I beleive it’s button activator ? You just delete it from assets and it should be fixed
now i am in a good mood
I’m in a good mood that your in a good mood :)
Thanks for the video, I really learned a lot
PEOPLE! When you download the starter asset and apply the script with the playercontroller you can avoid the walking slide doing this... go to the script and look for this line!
private void GetInput(out float speed)
{
// Read input
float horizontal = CrossPlatformInputManager.GetAxis("Horizontal");
float vertical = CrossPlatformInputManager.GetAxis("Vertical");
bool waswalking = m_IsWalking;
What you have to do is just add a Raw on the axis and then save the script and problem solve !
private void GetInput(out float speed)
{
// Read input
// Modifique los Axis a "Raw" con ese cambio pude eliminar el retraso en los pasos.
float horizontal = CrossPlatformInputManager.GetAxisRaw("Horizontal");
float vertical = CrossPlatformInputManager.GetAxisRaw("Vertical");
bool waswalking = m_IsWalking;
Hope this help you!
9:03 *laughs in probuilder*
Lucky you 😂❤️
I got to many errors importing the asset to Unity 2020.3. So I will just use the Unity free First person controller. By the way, thank you for the tutorial series.
Renember me when your famous
Hahaha absolutely my friend
FIX PLAYER MOVING AFTER LETTING GO OF MOVEMENT KEY: Open up the FirstPersonController script and on lines 208 & 209 replace
float horizontal = CrossPlatformInputManager.GetAxis("Horizontal"); with
float horizontal = CrossPlatformInputManager.GetAxisRaw("Horizontal")
and
float vertical = CrossPlatformInputManager.GetAxis("Vertical"); with
float vertical = CrossPlatformInputManager.GetAxisRaw("Vertical");
still does it for me :/
Thanks! I have a weird dream of making horror games and now I only have 1 problem instead of 2. Thats affording Unity
I benefited a lot from your explanation I am working on a horror game similar to Fnaf, and I want to learn more about making games. Can I contact you to help me make this game?
Tq tq tq tq tq verymuch sir ❤
It helps me 🎉
I wanna make a animitronic horror game
Thanks for the series! The only problem with it for me is that the asset is deleted from the Asset Store now :/
Thank you for sharing I'm just starting out and this helps so much :D
Glad I could help!
I was unable to find the Standard Assets pack
I’m try to make my first game and I want it to be horror. I was trying to learn unreal engine 5 but there are no good tutorials on this topic, is unity better for horror games? Which one should I lean?
Can I Use Other Texture Making Apps Cause I'm Too Broke to Buy Photoshop? Good Tutorial Tho!
lovely video with in depth explanation but 1 question. How does one do the importings
If you mean importing assets that you have got from the asset store. Go to windows, package manager, they should show there. If they dont show, go into the asset store, my assets, then click open in unity. Hope this helps
importing you can do by just click and dragging into an asset folder in the editor
Thank you so much dude If u never existed my game would’ve been goofy ! (Trailer soon)
Can’t wait to try it out my friend !
Hey @@user1productions883 the asset you showed is no longer available, any alternatives please?
Hi user1 great tutorial , but i have a small problem I can not download Asset Store
TY MAN u help me so much
can someone please help me, I can't find standard assets :(
It’s deleted😢😢
what else do we use
I have the link for it if you want then tell me ill share it with medai fire
@@BeastTobicsplease do
@@oddsockzzz i have share an link but youtube wont let me comment on my videos on my chanel so i will give you The link it wont remove there
Dose it get easier over time also wow I never knew it was this easy to place and build blocks
Great tutorial! Could you do one for dialogues maybe?
I will absolutely be planning on it for a future tutorial my friend ! Stay tuned
Well to be fair shape of you lody softs just like the first random notes that popped into Nice tutorials head
Hey this might be a dumb question but how can u run
If you are using the standard assets player, you hold shift
Please help me! Unity says my keyboard and mouse aren't supported in input manager. They work in editor but when I press "play", nothing happens with the keyboard buttons and the mouse. My keyboard is not that old and my mouse is ever newer (ASUS TUF M3). Please give me an idea. Help me so I can credit you in my game which is going to be a hit for sure when it comes out if I can finish it :)
I am working on a horror game in Unity, using HDRP, and I am struggling to create an effect for my enemy. I wanted to make it so it darkens anything it sees.
I was hoping to use a spotlight and give it a negative value, but Unity didn't like that. All my research indicated that the only way for me to achieve this would be to edit the render pipeline itself.
You could try making a UI element that darkens the camera when the enemy spots you
@@memecraftgamer8311 That is a genius idea actually! Thank you very much!
This is a really good idea ! Alternatively you could change the global light settings with a script !
Krazy , get out of here. That was funny, really funny
i really wanna follow this tutorial because it looks promising but i can't seem to find that asset, is there something i'm missing or an alternative i can use?
I did everything like you did in the video and when I want to try to walk in the game it doesn't work for me. Any suggestions?
Mind joining the discord? Myself or another game developer in there can start to break down this issue ( found in description in tutorials 5-30
you can do what you want!
i am making a horror game to and this really helped out be ready for my horror game and credit to: User1 Productions for the help. =)