A trace can get expensive on every frame (if you have other things on tick as well) so avoid code on tick. Better to give the NPC a collision box or sphere that will set a variable attached to the player or a component that's attached to the player. To clarify, a trace itself isn't expensive, rather once you get further along in development, if you have a lot of code tied to the frame rate tracing will just add to your cost.
@flyingmalkie43463 жыл бұрын
"this is it, my first ever line of dialogue, the entry for my game to be, a product of thousands of hours of time and effort, what shall it be...?" "So...you're finally awake"
@ArtBySamuelBrooks4 жыл бұрын
Anyone having issues on 4.24. When you remove from parent in the HUD graph place an IsValid node before it and make the Input Object the message widget. Hope this helps.
@juancarlosgarciafernandez61834 жыл бұрын
Can you put a screenshot? I can´t do it. Thank you in advance for your help.
@@billykennedy-carr7887 Thank You!!!! I was looking for a solution for a long time and you helped me. Thanks for fixing it
@TheKBC144 жыл бұрын
@@billykennedy-carr7887 Thank you so much!
@dssiego4 жыл бұрын
@@billykennedy-carr7887 @Sammy the real mvps
@freijadegraeve47834 жыл бұрын
For anyone trying this tutorial and not having the display message show up, I was having the same isue (using 4.24). At first I thought it didn't work because my set-up is a lot different than the tutorial's general set-up, ie for movement and such. But rewatching it gave me the answer to why it wasn't working. In this tutorial we do a cast after the event begin play which should make following casts unnessecary, which for some reason did not work as intended for me. While UE didn't give me error messages about needing a cast it did tell me that it was accessing none when truing to do the display message function. The problem was that I did need to put another cast in between the set and display message to my game mode. After I did that, it worked. I also did not need the event begin play to do a cast using this.
@TheGrimmy4 жыл бұрын
Yeah at some point UE4 changed things around how HUDs work, and I've had a lot of glitches along the way. No errors. Just glitches like the ones you're talking about. There was also one where the Display Message didn't go away on leaving interlapping. I don't know what they messed up, I just wish I knew how to fix the wide array of little things it left behind. Thanks for this, that's one little victory :)
@obbymusic7443 жыл бұрын
How
@kevinaccettarobles50422 жыл бұрын
Where exactly did you manage to fix it? "The problem was that I did need to put another cast in between the set and the display message to my game mode." Where? All he did in the game mode was these 3 nodes at the 6:01 mark, which don't include a cast.
@saif0316 Жыл бұрын
what does this mean? sorry, I'm kinda lost with what you said ..
@TheGrimmy4 жыл бұрын
So happy about the line trace. I had a lot of issues with the "Interaction Field" from a previous tutorial, and this one is a lot more specific, especially when there are more things in an area to interact with.
@seandobson26823 жыл бұрын
First time using unreal (been using unity for a few years), found the video easy to follow and just a really good tutorial.
@danliviu75 Жыл бұрын
Absolutly amazing tutorial...my favorite at all time.Thanks!
@jesperrasmussen2058 Жыл бұрын
does it work fine in UE5?
@danliviu75 Жыл бұрын
@@jesperrasmussen2058 I'm working in U 4.26
@danliviu75 Жыл бұрын
I have Unreal 5 as well but I've started in U 4.26 and I don't know how to migrate project
@danliviu75 Жыл бұрын
Do you have a tutorial with how to add animation to custom character when interacting with playable character?
@bobgratton2986 Жыл бұрын
can this works with unreal engine 5.2 ?
@deanfitri52194 жыл бұрын
Why does the "Press E to Interact" does not show after we package the game???? It showed only in the play in selected viewport and standalone.
@SakakiHiroshi4 жыл бұрын
For anyone following this tutorial and who encounters the same "issue" as others with (Accessed None trying to read property PlayersHUD". Blueprint: ThirdPersonCharacter Function: Interact Check Graph: InteractCheck Node: Display Message) or simply the "Press E to Interact" message not being displayed after the instructions for what goes after the print string test, I suggest you to in your project settings under maps and game mode and double-check the project is assigned to the thirdpersongamemode or whichever game mode you're using that is supposed to showcase the "Press "E" to Interact". I was having the same problem and it seems with some version of Unreal (4.24 in my case) the game mode isn't automatically assigned to the project by default and that's what was causing the issue. Hope this helps!
@deanfitri52194 жыл бұрын
Why does the "Press E to Interact" does not show after I package the game??? It showed only in the play in selected viewport and standalone.
@SakakiHiroshi4 жыл бұрын
@@deanfitri5219 Which version of the engin are you using?
@deanfitri52194 жыл бұрын
@@SakakiHiroshi Unreal Engine 4.23
@Sillymonkeies4 жыл бұрын
@@deanfitri5219 Did you figure this out??
@deanfitri52194 жыл бұрын
@@Sillymonkeies nope
@MirkoRizzari5 жыл бұрын
Thx for this. Can't wait for part 2 :)
@Hu7io4 жыл бұрын
I have issue with 10:34 . That red thing is facing behind me not in front of me how it should. Anyone has solution? + I do not see the "E" to interact box.
@rib_rob_personal3 жыл бұрын
Doesn't it make more sense to use a trigger to check if they can interact? That way you don't need to compute distance and orientation. Instead it's if they're in or out of the trigger.
@kevinaccettarobles50422 жыл бұрын
Idk why this is not working for me. 14:10 Here is where mine stops working. If I put the Print node to make it display "NPC" during play, it works. If I add everything after 14:10, it stops working and gives me this error: *Blueprint Runtime Error: "Accessed None trying to read property PlayerHUD". Node: Display Message Graph: InteractCheck Function: Interact Check Blueprint: FieldPlayerCharacter*
@Sillymonkeies4 жыл бұрын
"Press E to Interact" Doesnt show when I package the game. Anyone know why?
@billyshackleton25143 жыл бұрын
found a fix yet?
@gamerdweebentertainment16163 жыл бұрын
@@billyshackleton2514 forgot to bind, probably Text widget part, bind the text variable
@BlackFolioStudios Жыл бұрын
Everything here works perfectly, but I'm getting an error each time that says "Accessed None trying to read property MessageWidget". Node: Remove from Parent Graph: Display Message Function: Display Message Blueprint: W_PlayerHUD It doesn't seem to be actually affecting any functionality but wondering if it will be an issue in the future if I don't fix it.
@batzz8988 ай бұрын
I am using 5.3.2 unreal and I was having trouble with the “remove from parent” in the heads up display widget. But I was able to fix it by adding a “is Valid” with the question mark to false and connected the “message widget” to the input object. Then connected the “is valid” to “remove from parent” and it worked. I hope this helps anyone with the problem. (Edit: everything else in the video works very well just I had trouble at that part)
@LinggarHadistiawandi7 ай бұрын
Nice one bro, really helpful
@LinggarHadistiawandi7 ай бұрын
Hello, i got some problem, after i use ur code unfortunately the widget not showing up again, do you have any idea to fix that ?
@saif0316 Жыл бұрын
Hey my InteractMessage "Press E" appeared up at the end of this video but after goin through the second part its gone and I dont know how to get it back. Anyhelp???
@SPanZeto4 жыл бұрын
Works Fine for me using 4.25.3 doing all stuff in video! Ty for Tutorial!
@michaelb10994 ай бұрын
i know this is old tut but wondering if i could use a wave file to respond?
@meganofilando90972 жыл бұрын
hello, im using this dialogue for trying to make a game, but there a issue i can't solve, which is picking a choice, it work at first but later it would not let me pick any of the choice ive made afterward. like its locked or something? for example, ive been going through three long dialogue with choice which worked, but later it won't let me pick anything after. but sometime it worked after i restart, but later the other dialogue choice won^t work. the mouse appear, but when i hover around the choice, the hovering dont change color, or the button doesn't work when clicking, as if there a invisible wall above it. using unreal engine 4.27.1 and 4.27.2.
@Patrick_Engels3 жыл бұрын
By the way, I just wanted to mention that this video (part 1.) is not the first on the playlist.
@EmarStudios2 жыл бұрын
I'm a little confused ... seems like half of these blueprints is just figuring out if your in range of another object. couldn't you just use collision detection component instead? why do you need to build that with blueprints?
@alex_sophie5 жыл бұрын
Ok yeah i have a problem. im not using a rotation based movement system. so the sphere trace does not rotate with the direction im walking. and i am getting an error when i try to interact with the npc. "Accessed none trying to read Property PlayersHUD". can you help me?
@mccarthyjl5 жыл бұрын
Not sure about the first half of your question, but I ran into the same "Accessed none" error. To fix it: in your HeadsUpDisplay widget blueprint, on the false leg of the Branch node, make the reference to the Message Widget a validated get and connect Is Valid to Remove from Parent. That way it only tries to remove it if it actually exists.
@BrianHamil5 жыл бұрын
What kind of movement are you using? The sphere should be attached to the skeletal mesh.
@alex_sophie5 жыл бұрын
@@mccarthyjl it is a sprite based movement system. it should work because i am "flying" and based on the key i press the sprite changes. it should work how it is now but it doesnt. also the fix doesnt do it for me.
@The-Altered-Dev5 жыл бұрын
@@alex_sophie Hey did you fix it? I've got the same problem...
@alex_sophie5 жыл бұрын
@@The-Altered-Dev fixed it by putting a delay either infront or behind of the cast to gamemode. the rotation i fixed by just using a static line trace that tracey every direction at once or basically everywhere around the character
@pploy6542 жыл бұрын
Hello, I'm using your tutorial to develop my VR prototype but I think some node must be different as it doesn't work for me yet. Would love to hear from you on how to fix it please. Thank you very much.
@DarkEnforcer115 жыл бұрын
Hey Ryan, I’m still stuck on how I’d make my Guard not see the player if they’re in Stealth Camo, are you able to do a quick video on it please? coz I can’t find anything on KZbin 🤔
@BrianHamil5 жыл бұрын
You can use a boolean value, like "can be seen" on the player, so in your npc logic, have it ask if this value is true or false before deciding how to react to seeing the player.
@CreaTuPrimerJuego3 жыл бұрын
Hellow man Congratulation for vidio. One question, does this serve to make the actor make a move after selecting a question? I mean the unplayable actor....I'm from chile my freend!
@unlimitedgamerworks6125 Жыл бұрын
I've been working through the quest system you did. I've almost finished it, would it be possible to combine that system with this system
@Badwolf27434 жыл бұрын
Hi i love your tutorials as they are always in a lot of detail but i have a question and was wondering if someone could help me thanks. At the end of the tutorial when i try to search up "Display Message" nothing comes up and i have turned off sentative search to find it. So idk if i have missed something out i was supposed to name something i am using ue4 4.25.1 thanks again.
@erykbugajski77473 жыл бұрын
Hey I have a question in the first person mode and character I already have some stuff there I'm new to this stuff and when I try to add Even Begin Play on the FirstPersonCharacter it doesn't let me because it is already used by another widget. Any solutions?
@Hu7io4 жыл бұрын
So tutorial doesn't work for me
@vincentdupont37423 жыл бұрын
Have you a Idea How make it work for Item and other Intractable? Show the ''Press E''' message.
@lethiagames92085 жыл бұрын
for some odd reason the 'remove from parent message widget' is cauysing me errors.
@kayk76834 жыл бұрын
Thank you!
@alexeykolesnik80574 жыл бұрын
@@a.pustovitovsky I had such problem, but I can't understand your answer
@alexeykolesnik80574 жыл бұрын
@@a.pustovitovsky у меня такой же трабл, но я не совсем понял, что ты тут имеешь ввиду, можешь объяснить?
@astronaut7796 Жыл бұрын
I know this is three years late did you find the answer. I'm on unreal 4.27
@NyTE-y6t Жыл бұрын
prees e to interact is not showing up help
@ggplayer11704 жыл бұрын
How do I display portraits like in a Visual Novel along with the dialogue?
@tahayasinfirtina10063 жыл бұрын
İ may be a little late but there was an another engine for developing visual novels, it was called renpy if i recall correctly. İ think renpy was way too better than unreal when it comes to visual novels, so i recommend you to give it a shot
@darianagreen90823 жыл бұрын
For me it worked perfectly, it’s ver detailed and if you miss any single variable or forget to expose it, it won’t work, so just attention to details and it will work. I just was wondering @Ryan LaLey if it’s not too expensive to try to call function on movement? Especially if the game has many other interactions. What is the benefit of using sphere trace instead of trigger box around each actor ?
@kabosustan24843 жыл бұрын
Im having an issue, in my interact check the display messege node has a heads up display object reference but my player hud has a user widget object refference. I'm wondering of anyone has a solution for this thanks ^^
@Innoox5 жыл бұрын
Thank you a lot! Awesome and clear tutorial!!!
@bonescorvid7434 жыл бұрын
How could I make it so that the "Press E to interact" message appears above the NPC's head instead of on the screen?
@Desdemniae4 жыл бұрын
Add the interact widget as a component to the npc bp in world space
@bonescorvid7434 жыл бұрын
@@Desdemniae Thank you!! Don't know how simply doing that went completely over my head lol 😅
@Leomerya122 жыл бұрын
THANK. YOU.
@empirical_blade69263 жыл бұрын
Thank you bro this helped in my project
@SongOfStorms273 жыл бұрын
If anyone ever has the problem I did, here's a solution. Problem: I couldn't access "DisplayMessage" function inside of my HUD from The Player Pawn Blueprint's "Interact Check" function, so I tried to cast the variable inside of my player character referencing the HUD to cast as my HUD Blueprint and then I hooked it all up. It gave constant error messages saying something like "Accessed NONE while trying to CastToW_HUD" My Solution: My HUD variable reference was starting from my GameMode, and both were coming out as TYPE: User_Widget I re-did them so they both were of type W_HUD (my custom widget for the HUD), and then I no longer needed to cast in the interact function, as my reference to the HUD was now the actual HUD and not a general User_Widget and everything became solved. This is probably some error I made along the way that's totally my own fault, but maybe it can help someone else. Peace and love
@meathook41535 жыл бұрын
I have like 1200 errors saying accessed none PlayerHUD. Does anyone know how to fix. I follwed the tutorail all the way through.
@KepperSnapper5 жыл бұрын
I dont know how to solve this as well. there is a solution in one of the comments below but I cant understand what hes saying.
@meathook41535 жыл бұрын
@@KepperSnapper yeah it is a bit complicated. I'm still trying to figure out, but i can't.
@KepperSnapper5 жыл бұрын
@@meathook4153 Hey try this. In your Interact Check function, near the end, right click and change the GetPlayersHUD to a validated Get and connect IsValid into the Display Message Node and give it a shot.
@wildfire_writer2 жыл бұрын
Convert your references to the message widget in the HUD (when you go to remove the widget from the parent) to a validated get
@meathook41532 жыл бұрын
@@wildfire_writer Thanks, I respect that you commented this 2 years later.
@dreamersdream51314 жыл бұрын
Thank u for this awesome tutorial!
@jurassicworld60782 жыл бұрын
Is there a way where the interact message goes off after you have interacted with it? Also how will you change the camera view to the NPC view like the one in this video: kzbin.info/www/bejne/aaargoWmgJedoac with the blueprints that was used in the video above? I hope my questions make sense and I hope you will be able to answer them. Thank you in advanced.
@GrAlUnrealEngine5 жыл бұрын
Can I somehow remove the message "Press E to Interact"? I just remove it only when I hover and come close to another object. For example, the "box"
@DangleDuffy4 жыл бұрын
If you're using a collision box of some kind to do this then you are probably using the OnBeginOverlap event. Just use OnEndOverlap event to remove the message.
@linyafernandez34443 жыл бұрын
Thank you sir for finding the error! I was wondering if I was the only one :'--(
@ekyanso42535 жыл бұрын
Hello, I am having an issue with the display message. After the NPC displays the message, and I move away to hide it, the message will hide but then never show up again, even if I do stand in front of the NPC and the collider activates again. I set up a 'print string' node to make sure the collision was being registered, and it is. But for some reason it won't display the message a second time. Please help.
@goldenpixy86093 жыл бұрын
Hi. I'm having the same problem. Did you figure it out?
@justinquilala7545 жыл бұрын
Hey Ryan, I am new to UE and I've been following your tutorials. Thing is, I followed this tutorial step by step and for some reason, the message "Press E to Interact" does not show up and I really don't know why. but I am actually using an older version of Unreal Engine specifically 4.17.2, I really wonder if the version has something to do with why it won't work for me. Help please LOL
@zeolive54485 жыл бұрын
Have you clicked the "Show Message" Boolean box within the "Display Message" Event within the Interact Check function of the Player Character? If unchecked, the "Press E to interact" will not show. It was one of the very last steps.
@justinquilala7545 жыл бұрын
Oh hi :) yes I did. The message still did not show. But I was able to make it work already just a while ago. Downloaded the latest version of UE and it worked! Turned out it's just a version issue :) I appreciate the help tho :) thanks
@fuichiko81504 жыл бұрын
@@zeolive5448 I don't have "Show Message" Boolean box within the "Display Message" to clicked
@zeolive54484 жыл бұрын
@@fuichiko8150 what version of unreal are you using?
@saif0316 Жыл бұрын
same here! my press "e" message stopped appearing specifically after starting part 2. this was on ue5. really frustrating
@MassiveMawEntertainment5 жыл бұрын
Great tutorial: quick question. I am doing your tutorial for multiplayer, What replication mode do I select so that each player can get their own interaction (not visible to other players)?
@akhiladecosta93264 жыл бұрын
Hi Ryan, Is the sphere trace an alternative for thee collision you added in the quest series? it would work either way right? thanks in advance
@RyanLaley4 жыл бұрын
Correct
@akhiladecosta93264 жыл бұрын
@@RyanLaley thanks man.
@Kid_Makina5 жыл бұрын
even thought the print string works when the sphere trace hits the npc im getting "Accessed None trying to read property PlayersHUD" like 10,000,000 errors and the interact widget wont show
@RyanLaley5 жыл бұрын
Sounds like you PlayerHUD referenced hasn't been correctly set. Make sure it is on a begin play event
@Kid_Makina5 жыл бұрын
@@RyanLaley seems like nothing is working followed the tutorial exactly positive i didnt miss anything. Maybe it might be engine version. I am making a project with paper 2d character in 3D enviroment camera is in fixed position.
@1996bag4 жыл бұрын
Hey great tutorial. How can the Sphere Trace become invisible?
@acardboardbox38613 жыл бұрын
Got to the "Interact check" function in your third person character blueprint, on the "SphereTraceByChannel" node set "Draw Debug Type" to none
@michellemackay1754 жыл бұрын
Hmmm, when I connect DisplayMessage to false for both branches I get an error for the position. Can anyone help?
@michellemackay1754 жыл бұрын
For anyone in the future this was in the comments below but it helped me out i.gyazo.com/964bbf682fda114498ff6864329fd128.png ??
@KepperSnapper5 жыл бұрын
Hi anybody has any solution for this error? Been trying to fix it for hours Blueprint Runtime Error: "Accessed None trying to read property PlayersHUD". Blueprint: ThirdPersonCharacter Function: Interact Check Graph: InteractCheck Node: Display Message
@KepperSnapper5 жыл бұрын
For those wondering, in your Interact Check function, near the end, right click and change the GetPlayersHUD to a validated Get and connect IsValid into the Display Message Node and give it a shot.
@deanfitri52194 жыл бұрын
@@KepperSnapper Hi. I dont quite understand the "change GetPlayersHUD to a validated Get and connect IsValid".
@geoffrey36685 жыл бұрын
Great video! The only thing is the interactinterface of this dialogue tutorial mess around with interactinterface of your inventory tutorial. I just renamed the interfaceinteract to stop the interference ;).
@RyanLaley5 жыл бұрын
You can use just the one interact interface for both systems
@OyunZinciri4 жыл бұрын
where can i change the position of the writing? thanx by the way
@tahayasinfirtina10063 жыл бұрын
Widget blueprint üzerinden değiştirebiliyor olman gerekiyor.
@psymanic96573 жыл бұрын
Nothing shows when I walk up to the NPC
@skilatgamedev33535 жыл бұрын
Mmmmh I don't understand why it show a thousand of display message and never remove it :/
@crynesssruns73645 жыл бұрын
It is a bit complicated to explain but essentially instead of deleting the child every tick you take the canvas and get all of its children, then you run them through a for each loop and test if the equal the message you want to delete that is supposed to be there, but really is not. My tree looks now as follows: after the Branch that checks the message another branch. The condition you want to check is "has Any Children?". If this is true you get all the children with the function "get all children". THis returns an array you put in a for each loop. The array element outputted you check with == message widget. If this is true you have the message on screen. The "loop body" of the for each loop goes into another branch. If this is true we have a children and we also have the message we want to delete. From there just insert the "Remove from Parent". And also set the message widget to nothing, so it is cleared up for later use. That was my ""FIX"" . It is actually way better tbh as you can check for any message on screen and delete it accordingly. Also a lot safer as you dont get errors like "has no children to delete" which is what we expirienced.
@The-Altered-Dev5 жыл бұрын
Hi, I can't cast HeadsUpDisplay to the ThirdPersonGameMode (the cast fail)... does someone knows why?
@The-Altered-Dev5 жыл бұрын
Never mind, fixed it
@porain5 жыл бұрын
@@The-Altered-Dev Hi,I got the same problem! Can you tell me how you fixed it?
@astronaut7796 Жыл бұрын
@@porainIDK if this is too late, but try changing the game mode overview. My project had like 3 third-person game modes but only the one in which I put the blueprint worked. After that go into project settings and set the working game mode as default so that it always uses that and never switches.
@neals78975 жыл бұрын
Hey I was just wondering, in ur fps tutoiral how do u add more than 2 guns to the switch weapon function. If u could help with this, it would be amazing :) Really need to know for a college project im working on. Do u use integers??
@crynesssruns73645 жыл бұрын
I am Getting about 1200 Blueprint Runtime Erro Accessed NoneTrying to read Property MessageWidget. How I fix that?
@crynesssruns73645 жыл бұрын
@@underwood337 Yes i did fix it. It is a bit complicated to explain but essentially instead of deleting the child every tick you take the canvas and get all of its children, then you run them through a for each loop and test if the equal the message you want to delete that is supposed to be there, but really is not. My tree looks now as follows: after the Branch that checks the message another branch. The condition you want to check is "has Any Children?". If this is true you get all the children with the function "get all children". THis returns an array you put in a for each loop. The array element outputted you check with == message widget. If this is true you have the message on screen. The "loop body" of the for each loop goes into another branch. If this is true we have a children and we also have the message we want to delete. From there just insert the "Remove from Parent". And also set the message widget to nothing, so it is cleared up for later use. That was my ""FIX"" . It is actually way better tbh as you can check for any message on screen and delete it accordingly. Also a lot safer as you dont get errors like "has no children to delete" which is what we expirienced.
@Kadoc904 жыл бұрын
@@crynesssruns7364 Could you please provide a screenshot of your solution? Even with your explaination I can't seem to get it to work. Thanks!
@crynesssruns73644 жыл бұрын
@@Kadoc90 Well this is like 6 Months old. Just get the Message. Convert to is Valid. And do that in the Beginning.
@anandshukla91564 жыл бұрын
@@crynesssruns7364 Could you send me a screen shot on how you fixed it because I'm really confused on how to use blueprints
@eaxea3 жыл бұрын
@@Kadoc90 @CrynesSs Runs can you do that for me too
@AmnestiaInc5 жыл бұрын
I'm not a programmer (I'm 3D artist :D but I love the concept that I can make my own game with your tutorials!) but isn't that trace sphere going to kinda... "lock" interactable actors you (and me) created in your (great!) inventory system tutorial and make them "unachievable"?
@RyanLaley5 жыл бұрын
Use multitrace. It returns an array of all actors hit. So you can do a for each loop and get the highest priority target.
@AmnestiaInc5 жыл бұрын
@@RyanLaley You are the best!
@xxvaladilenexx69844 жыл бұрын
It would be great to have a JRPG dialogue system tutorial. One where i can see character name, message and the picture of the caracter. All tutorials are going for the same way :(
@Rndm94 жыл бұрын
You can't have everything done for you, you have to be able to think for yourself otherwise you won't get far making games. Adding in the features you specifically listed really isn't difficult, just add a new part to the dialogue widget like text, apply a variable you gave that NPC (e.g. name) to that part and fiddle around with it and you'll get there. I know this comment is 5 months old but good luck with whatever you're doing now anyway :)
@xxvaladilenexx69844 жыл бұрын
@@Rndm9 "you can't have everything done for you". Thanks, captain obvious. I know that. Just i didn't find any help and for a beginner it's too hard sometimes to make something new. Even if you say it's easy. Anyway, thanks.
@Kein_Alias5 жыл бұрын
Hi. =) Is it possible that you can create some classic sci fi effects? Like Lasershots, Laserbeams and so on? Nobody shows such things with niagara. Nice work though. =)
@RyanLaley5 жыл бұрын
Sure :)
@sombatkhruathong8293 жыл бұрын
19.50 (set position, set auto size)
@Sillymonkeies4 жыл бұрын
You rock!
@WaltechStudios5 жыл бұрын
Also have video problems, green screen
@nikacola73194 жыл бұрын
This is the first negative youtube comment I've ever left (true story), but Ryan, can you PLEASE start naming things in an organized and clear manner. It would really help out your viewers, especially new ones. On your qust making tutorial you named almost every variable, widget, and object reference some variation of "quest" which makes unpacking what the hell we're actually doing extremely difficult. Just some constructive feedback; I do enjoy your channel but the disorganized naming conventions make it nearly impossible to actually learn anything.
@Marco-ve2kk5 жыл бұрын
IF I try to put these inputs for a firstpersoncharacter this tutorial simply does not work at all, no messages on the screen, even if the npc print string works perfectly. Jesus...
@Marco-ve2kk5 жыл бұрын
nevermind, there werre a missing exec link in the gamemode, fuck there are so many chance to forget some link with this software and the software does nothing to warn you, epic should really do something about this.
@Kid_Makina5 жыл бұрын
@@Marco-ve2kk im having the same exact problem how did u get it working?
@laneydante6014 жыл бұрын
Thanks for your great tutorial, it‘s really practical. But how to make a typewriter animation?Thanks a lot.
@Manim85 жыл бұрын
All I'm getting is a green screen :/
@AmnestiaInc5 жыл бұрын
Just download the video with for example 4K Video Downloader. It's fine.
@KittenisKitten Жыл бұрын
Problem with a lot Ryan's tutorials is he never fully explains the reason for doing things bit by bit, Which means you never learn, and just are really copying his work, rather than learning.
@moncherryhead75304 жыл бұрын
honestly man... can you please be a little more organised in your video structures in future? You are extremely hard to follow when shit hits the fan and I'm trying to backtrack your tutorials for an answer as to what I did wrong. Just make a script or a step by step process for yourself to follow when you record so you don't bounce between everything the whole time... It's really frustrating trying to comb through 25 min long videos just for a box I misticked or whatever. Takes me an hour to find what I did wrong instead of 10 minutes.