Wow! You have really stepped up your content game. This is super cool! I’m going to use this one day
Жыл бұрын
I'm wondering what it would be like to resize just the top as the bottom..
@UnrealSolver Жыл бұрын
Good question that will be hard to explain in a single comment 😅 But as for the concept you will probably need to move the widget + rescale at the same time That’s because you will change the top left corner position when scaling from there and with that - the Widget Location has to change accordingly to your mouse movement and scale it down so the bottom and/or right side remain in place ;)
@theoryguides2 жыл бұрын
You put so much effort into these vidz.. you're truly amazing!!
@UnrealSolver2 жыл бұрын
Thank you so much! You're amazing too mate! :)
@SnowstormProductionsCompany Жыл бұрын
wow, this vid really helped, but could you tell us how to make the left size resize too?
@UnrealSolver Жыл бұрын
I can take a look on that, I remember that I struggled a bit with math on this one and couldn’t get it to work as I wished to so I left it🤣 but surely it’s worth taking a look ;)
@SnowstormProductionsCompany Жыл бұрын
@@UnrealSolver alright, thanks!
@allalongthewatchtwer2 жыл бұрын
Hello, this tutorial was extremely helpful. I would like to know how to make window scaling limits. Thanks
@UnrealSolver2 жыл бұрын
Thank you! :) I will make next videos expanding the knowledge including the scaling restrictions If you download my 'Interactive Widgets' it's partially applied - it works for X and Y separately but doesn't work if you go to the corner for now, will be updated Sorry for late response, for some reason I didn't saw the comment until now
@allalongthewatchtwer2 жыл бұрын
@@UnrealSolverHello! Aweaome! can I download it? where can I find it? Thank you so much!
@UnrealSolver2 жыл бұрын
@@allalongthewatchtwer go to “about” on my Channel to find my Google drive folder I share ;)
@allalongthewatchtwer2 жыл бұрын
@@UnrealSolver Thank you so much! have a great day!
@UnrealSolver2 жыл бұрын
@@allalongthewatchtwer have a great day too!
@wimeradus Жыл бұрын
Very nice video. Would you have any pointers on how I could prevent players from being able to drag the UI completely out of their screen? Perhaps on how a safe boarder could be set up. Thanks a bunch for the knowledgable videos!
@UnrealSolver Жыл бұрын
Thank you! I’m glad you love it ❤️🔥 If you download the Project (link under first video) there is a setup that sticks the windows to the sides or edges depending on the mouse location ;) Take a look on that to create something similar in your Project ✌️
@wimeradus Жыл бұрын
@@UnrealSolver perfect that worked great! Keep up the amazing videos. You deserve a lot more subscribers
@UnrealSolver Жыл бұрын
@@wimeradus Thank you so much for your words ❤️🔥 It’s nice to hear you’ve found the right answers here ✌️
@李佳奇-w9z Жыл бұрын
Very nice video. But I curious about how to create the video player like the youtube player, which can switch between mini-window and full screen. Like the picture to picture function. I mean the mini player button.
@UnrealSolver Жыл бұрын
Thank you!
@李佳奇-w9z Жыл бұрын
@@UnrealSolver oh, really!!! thank you so much! :) When you will upload the video tutorial?
@UnrealSolver Жыл бұрын
@@李佳奇-w9z I’ll hope for the weekend, if not then the next one, I should upload anything since I didn’t upload for a long time 😅
@李佳奇-w9z Жыл бұрын
@@UnrealSolver thank you so much! I hope the video is helpful. haha, yes I seen you didn't upload the new video for a long time.
@李佳奇-w9z Жыл бұрын
@@UnrealSolver hello, unreal solver. Are you ready to upload the video as we mention above?
@CamilleRudelli Жыл бұрын
Nice tutorial, I'm trying to set button to scale on every side of the panel but I cant manage to scale it from the right point. For example if I'm trying to scale it with a button on the left the panel will still scale from the right and I can't figure out what I have to change in the code, Can you give me a hint? Thank you
@UnrealSolver Жыл бұрын
So basically you want to have 4 buttons, if you press top one it will scale the top side to the top and bottom stays in place, you click left button the right side goes till end and left stays, is that correct?
@CamilleRudelli Жыл бұрын
@@UnrealSolver Exactly, I already set up the buttons and the enumerators for each one but I dont understand what i have to change in the code
@50shadesofskittles92 жыл бұрын
Love it!
@juggernautx17792 жыл бұрын
adding outline on meshes without using a Post Process Volume?
@UnrealSolver2 жыл бұрын
I don’t quite understand what do you mean, this is widget based project, no meshes are used here And there are plenty of tutorials on how to make outline with Materials instead of Post Process if that’s what you mean 🤔
@juggernautx17792 жыл бұрын
@@UnrealSolver I been looking but everyone is using a Post Process Volume in the level which is not what I'm looking for. Like for example in an FPS game when you see pickups with an outline custom colour
@UnrealSolver2 жыл бұрын
I removed the last link I used, I created my own video from which you can learn how to do it ;]
@thelinkofmachi2 жыл бұрын
thanks you really helped! By any chance do you know a way to zoom in widgets with pinch? i'd really like to implement pinch with that scale feature! thanks again for the video.
@UnrealSolver2 жыл бұрын
Thanks! I’m glad you like the tool ;) What do you exactly mean with ‘zoom with pinch’?
@thelinkofmachi2 жыл бұрын
@@UnrealSolver Thanks for the answer so soon! with "pinch zoom" i mean the gesture to zoom with two fingers, like a photo in a phone gallery. i already have a working code for pinch in general, but in widgets it just doesn't work :(
@UnrealSolver2 жыл бұрын
@@thelinkofmachi unfortunately I am not making mobile projects so I cannot tell what may that be I can imagine what could be done but I have no experience in mobile so I cannot tell, sorry mate
@thelinkofmachi2 жыл бұрын
@@UnrealSolver No problem! you already helped a lot, thanks anyway.
@concavekimono80362 жыл бұрын
Is there a way to add mechanics to this? Like having to move windows to certain places in a UI based puzzle for example? Great video as well man :)
@UnrealSolver2 жыл бұрын
Sure thing! As the Windows contain only code for scaling and moving there's a lot of space for other things For your idea you would want to: -Remove Scaling -Add background Widget that will be the playfield for your puzzles (this would contain some grid) -Simple math for checking if we overlap a field when 'dropping' the puzzle -Some simple rules telling if it's the correct placement That's a very simplified version of steps but hope this will point you somewhere in the right direction I think I'll make a video-tutorial to make a simple puzzle game as it's an interesting idea :)
@agj3832 жыл бұрын
great channel.
@UnrealSolver2 жыл бұрын
Thank you ^_^ 🍻
@abdelrhmanhassan752 жыл бұрын
add favorite feature to the widgets?
@UnrealSolver2 жыл бұрын
Sounds like a cool feature! Making it isn’t hard, the thing is that at the moment the Project doesn’t contain too much to offer but once it will get expanded we’ll get into some better tuts including making some sort of favourites menu/pane ;) Thanks for suggestion!
@UnrealSolver2 жыл бұрын
Favourites are done! Check out my Google Drive -> Unreal Projects for Interactive Widgets [4.27]!