What are the methods avaiable to draw lines in unreal engine?

See if this can push you in the right direction:

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.

If you got rid of the component (remove the component from sedan), you could add a regular widget like so:

You can even use the same variable as before.

1 Like

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

1 Like

image

The above hard coded values will not work, itā€™s time to:

image

ā€¦ or you can cheat ā€¦

Add some dummies. Draw lines between their world locations. They are attached to the camera and will move with it, but can also move independently.

1 Like

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.

This should really be done with vector math.

1 Like

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ā€¦ :grinning: :grinning:

1 Like

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

I see what you did there @Everynone !

Hee hee!

heeā€¦ about 1 year laterā€¦ heeā€¦

:zap: :heart: :zap:

Rama

2 Likes

Will It show up in a Scene Capture 2d ?

Can I make curved lines with this method? I need to give a line that represents the trajectory of my planets

You could use splines or Niagara:

1 Like

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 could try painting them in a widget - splines are supported but there is not much control:

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:

https://portal.productboard.com/epicgames/1-unreal-engine-public-roadmap/tabs/94-forward-looking

Chances are weā€™ll get a line renderer.

1 Like

Thank you, your answers have helped a lot!

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.

https://forums.unrealengine.com/t/drawing-spline-runtime/1699426