The first point is drawn where the camera is, the second is drawn 200 uus in front of the camera and converted back to 2d - a small pure function so we do not need to spam the same nodes all over again.
From a side, it would look like this:
Are we even still going the right direction?
Btw, when I tried to do it with a component, it was all over the place and I have little mental stamina left to wrangle its transforms.
Yes this is what i needed and trying to accomplishā¦since i am using widget component i was trying to find a way to find a widget itself. (here it is Line_widget). As using widget as component have problem, i am now trying to access the widget into the blueprint. So in the below image as far as I understood, the red marking is widget component and the green box is using the widget itself, right ?
if this is clear then I can implement what you said above as a function and project the line.
Yes i got it nowā¦I removed the widget component from the sedan blueprint and added the widget directly so now i get the line from the camera_front location. Now need to adjust the other points to get a lineā¦i guess now it is ok
Thanks for the insightā¦i will do it and get back here with the feedbackā¦i guess it will work and the default location is relative, right ? Or do i need to change it to world location from the transform tab ?
They should be relative to the camera as default, as they are here. But when you access them you ask for world location, identical to what you already to do with the camera.
Yes now got itā¦with the usage of getworldtransform the dummies position changes to world transform. I will try the function you made and see how it goesā¦Thanks for your time and i guess its around 88 comments in this postā¦
Hey, now able to draw line but as you said earlier, basically as it draws on the screen, its thickness changes and also not occluding when the camera goes in far view. Also it takes some time to update the positions when spanning the camera speedily.
So i think i have to look for other methods for my purpose
Thanks for answering me, I used a spline and it was cool, but thereās a problem, it uses mesh to be visible in the game, what I wanted was lines that didnāt change their thickness if you got closer to them, exactly the same as the lines that already have in the unreal editor as is the case with the spline, I thought about using draw lines, but how can I draw ellipses and circles? I know thereās a way to project the worldās coordinates onto the screen, Iāve already managed to do that, but how do I make curved lines with draw lines?
Youād run a loop on a data array. Admittedly, BPs are not great at drawing 2D, itās not user friendly; especially considering how nicely it draws wires in the graphs, right? Youād need to expose the way the editor draws debug lines. Have a look at Ramaās Victory plugin, I believe it includes it.
On the other hand, thereās a slew of improvements coming to UMG, scroll down to the UI systems:
Alright, I found a post by @Supremative that explains how to draw a spline at runtime. In the post, he shows how to create a wireframe material to apply to a spline mesh, and after doing that, I was able to achieve the effect I wanted, 2D lines in world space using the spline component.