Hello,
Im actually making Decoration Meshes from .t3d brushes.
I convert all in Meshmaker with the same package name.
When open this package in Unrealed in the "Actor Class" window, all meshes are scattered.
How to have all my new meshes in one package ?
Also, when add them in map, they appear amazingly huge !
Some advice ?
Thanks.
Questions on Decoration Meshes.
-
- Godlike
- Posts: 5877
- Joined: Sun May 09, 2010 6:15 pm
- Location: On the roof.
Re: Questions on Decoration Meshes.
MeshMaker does a mesh at time as far as I recall (I did meshes with it for my plugins). Depending on situation you need to adjust default properties (Drawscale and Collisions - Radius/Height. In order to have them in a Single Package their source-code need to be dropped in one folder as source code for all of them, or else you'll have them spread, each decoration will have a package.
This how I've wrapped them for having all three needed decorations in one package that was later compiled and decorations added during run-time from this package.
As example importing three separate decorations in one package using directives compiled:
You can do such import in Editor and saving later final "master" package with said decorations.
This how I've wrapped them for having all three needed decorations in one package that was later compiled and decorations added during run-time from this package.
The other way is scripting a generic class of another package which will import packages with decorations in this package which will have decorations available.
As example importing three separate decorations in one package using directives compiled:
Code: Select all
...
#exec obj load file=..\System\Trm2.u package=P_BOOMBRIDGEBE
#exec obj load file=..\System\wd_fr.u package=P_BOOMBRIDGEBE
#exec obj load file=..\System\Ns_Lamps.u package=P_BOOMBRIDGEBE
...
You do not have the required permissions to view the files attached to this post.