One of the only people who actually explain what theyre doing instead of just... doing it
@im_Hide2 жыл бұрын
thanks so much Brent, it was insanely tedious trying to find criteria about the render targeting. I looked for almost 30 minutes trying to find anything, now to understand point sampling
@davidholender68552 жыл бұрын
Hi Brent. Greetings from New Zealand. I Just watched these tutorials today and I have to say totally awesome job dude. I really hope you get the time to do more in the not too distant future (notifications turned on LOL).
@raarky2 жыл бұрын
Just what I’ve been looking for! Thank you
@kiyasuihito3 жыл бұрын
This video was so helpful. I couldn't find a good explanation on using render targets for setting resolutions. I wish you had more tuts on monogame but I understand you gotta enjoy life so carry on ☺️
@elm4nuff3 ай бұрын
Amazing tutorial
@DepressionAlgorithm5 жыл бұрын
Shame these videos didn't take off. There's a bit of a dearth of information out there on how to do more advanced things in Monogame. I've been mucking around with Rendertarget2D and ScissorRectangle for the better part of a week and I'm still a bit confused on some of the finer details.
@SomethingRandomChannel5 жыл бұрын
Hi Mate, This is actually awesome and super helpful to me. I know it's been a few months but hopefully this message gives you abit of motivation to put out another video! I'm using this method now, thanks!
@brentstechtutorials15285 жыл бұрын
I wasn't sure how useful these videos were to people since they didn't seem to get many views, or at least at the time I posted them they didn't. But I'll definitely have to continue this series soon.
@SomethingRandomChannel5 жыл бұрын
@@brentstechtutorials1528 I guess it's just really helpful to a very specific audience so I guess over time it would build up more and more views. Your angle on this is spot on, it can get frustrating to wade through all the basic "learn to program C#" stuff when you are already familiar with the language. Your videos go straight the looking at the problem we want to solve.
@potatoradio342 жыл бұрын
This is super helpful to a newbie like me. Thanks so much
@mrlinushermansson2 жыл бұрын
I really like the tutorials, can you answer this? In a concise way, why do we want to use render targeting? If we do not use it what problems will we run into down the road? I’m not understanding 100% why this works and what problem we are solving. Thanks so much.
@brentstechtutorials15282 жыл бұрын
Sorry for the late response I'm very busy. Render targeting makes it so the graphics are easily scalable. You can code as if the game will always run a certain resolution and not worry about the size of the window or monitor. Without it you'll have to manually tell every little thing in the game to scale according to the size of the window. Without it coding is far far more tedious and you're more prone to making a coding error.
@damdal18372 жыл бұрын
Is there any particular advantages/disadvantages of this method compared to setting the render target to the desired game resolution (ie very low for a pixel art game) then using the destination rectangle parameter when you are drawing to the screen where the rectangle is just the size of the screen?
@joachimsaindon36583 жыл бұрын
This was very helpful and easy to follow. Thanks!
@PyxelBlobsStudio5 жыл бұрын
Hello ! I know it's been a while since you started the series. I met you because I'm looking for information on the render target is the HLSL shader. I have two shaders that work very well. But I can not use both at the same time. it's a black screen. I was told that the render target allow to fix is problematic. I would like you to help me about it. I think you have not seen a lot because all this is the basics of monogamous. Many people are looking for more push information like me right now. I think if you explain things to us more complex you would have more visibility.
@brentstechtutorials15285 жыл бұрын
I have no experience with shaders but I will look into it. I'll get back to making more of these tutorial videos eventually. Been busy with various other things.
@PyxelBlobsStudio5 жыл бұрын
@@brentstechtutorials1528 Great, if you want I could pass you a project with a dozen very basic shaders that I realize. (black and white color, contrast, negative, rainbow, rotate, gradient, light).
@brentstechtutorials15285 жыл бұрын
Sure, just leave a link to the code here.
@PyxelBlobsStudio5 жыл бұрын
@@brentstechtutorials1528 Do not you have Discord? It's easier, you can help me if I have problems and me with the shaders.
@PyxelBlobsStudio5 жыл бұрын
@@brentstechtutorials1528 I have a question, how do I draw a rendertarget, then just after another. The dexieme allows me to zoom on the map
@thseaqueen29382 жыл бұрын
Thank you for making this
@pon12 жыл бұрын
If the pipeline tool doesn't open when double clicking, right click and use Open With... then in the list there should be mcgb-editor-wpf, he directed you to find it yourself but it should be in the list.
@brentstechtutorials15282 жыл бұрын
Sorry for the late response. I'm sure you've fixed this by now but the pipleline tool should be under C:\Program Files (x86)\MSBuild\MonoGame\v3.0\Tools
@michalskoula3 жыл бұрын
Thank you very much for this! Helpful.
@aravindjc70995 жыл бұрын
Thanks for this awesome video.
@unegisteredhypercam89593 жыл бұрын
Hey! Will these tutorials ever return?
@brentstechtutorials15283 жыл бұрын
Yes, I plan on making at least a couple more. I'm just super busy with several big projects. Once one or two of them are done I'll get back into game development.
@unegisteredhypercam89593 жыл бұрын
@@brentstechtutorials1528 Thank you for the reply! I will look forward to these.
@RiccardoBocci2 жыл бұрын
which color scheme are you using?
@brentstechtutorials15282 жыл бұрын
Sorry, don't recall. I set it up something like 5 years ago.
@Akaadream5 жыл бұрын
Hey, i made an map editor inside my game, and using the same scaling system as you, i got an offset between the windows cursor and in-game cursor. Do you know where is the issues ?
@brentstechtutorials15285 жыл бұрын
It's hard to know without seeing the code myself. Is there still an offset when using the code but having the window be the same size as the target?
@Akaadream5 жыл бұрын
@@brentstechtutorials1528 My cursor position using the size of the window without take care of the scaling. So i have to change my cursor position with taking consideration of the scaling ratio. But i don't know how to calculate this