New Custom Mesh Features and Fixed the Converter Problem
- jacoblince8
- Feb 9, 2024
- 1 min read
This is a short video of the new calls I made for custom mesh place by copy pasting some of my Blueprint and Python code I have already made. Now you can make the line and circle placements with custom meshes as well.
Also, While I was in the middle of this I found a solution to the package name converter error that I got before. Basically, the different between an object path and a package name is just an extra point and the name of the mesh again according to this community dev post I found:
Here's a summary of what that means:
Objectpath:/Game/Content/Staticmesh.Staticmesh
Packagename:/Game/Content/Staticmesh
So I made some code from basic Python list commands that separates the last part of an objectpath and takes the 0 index variable which is now basically just a packagename.


Then I just copy pasted these new Python functions and called them where they needs to be in those script calls.



Also, I took the liberty of adjusting the calls for the built in shapes for they use their packagenames instead of their objectpaths.





The only other thing I need to included is a way to choose the coordinates of a placement. I make a blank actor that will serve as something to get the location vector from in script.

Now I just have to code this up and send the new version of the project off for approval. I'm pretty sure I will have this finished by next week.
Comments