unreal.GeometryScript_NewAssetUtils

class unreal.GeometryScript_NewAssetUtils(outer: Object | None = None, name: Name | str = 'None')

Bases: BlueprintFunctionLibrary

Geometry Script Library Create New Asset Functions

C++ Source:

  • Plugin: GeometryScripting

  • Module: GeometryScriptingEditor

  • File: CreateNewAssetUtilityFunctions.h

classmethod create_new_skeletal_mesh_asset_from_mesh(from_dynamic_mesh, skeleton, asset_path_and_name, options, debug=None) -> (SkeletalMesh, outcome=GeometryScriptOutcomePins)

Create a new SkeletalMesh asset from a DynamicMesh and a Skeleton. Save the asset at the AssetPathAndName location.

Parameters:
Returns:

outcome (GeometryScriptOutcomePins):

Return type:

GeometryScriptOutcomePins

classmethod create_new_skeletal_mesh_asset_from_mesh_lo_ds(from_dynamic_mesh_lo_ds: None, skeleton: Skeleton, asset_path_and_name: str, options: GeometryScriptCreateNewSkeletalMeshAssetOptions, debug: GeometryScriptDebug = Ellipsis) Tuple[SkeletalMesh, GeometryScriptOutcomePins]

deprecated: ‘create_new_skeletal_mesh_asset_from_mesh_lo_ds’ was renamed to ‘create_new_skeletal_mesh_asset_from_mesh_lods’.

classmethod create_new_skeletal_mesh_asset_from_mesh_lods(from_dynamic_mesh_lo_ds, skeleton, asset_path_and_name, options, debug=None) -> (SkeletalMesh, outcome=GeometryScriptOutcomePins)

Create a new SkeletalMesh asset from a collection of LODs represented by an array of DynamicMeshes and a Skeleton. Save the asset at the AssetPathAndName location.

Parameters:
Returns:

outcome (GeometryScriptOutcomePins):

Return type:

GeometryScriptOutcomePins

classmethod create_new_static_mesh_asset_from_mesh(from_dynamic_mesh, asset_path_and_name, options, debug=None) -> (StaticMesh, outcome=GeometryScriptOutcomePins)

Create a new StaticMesh asset from a DynamicMesh. Save the asset at the AssetPathAndName location.

Parameters:
Returns:

outcome (GeometryScriptOutcomePins):

Return type:

GeometryScriptOutcomePins

classmethod create_new_static_mesh_asset_from_mesh_lo_ds(from_dynamic_mesh: None, asset_path_and_name: str, options: GeometryScriptCreateNewStaticMeshAssetOptions, debug: GeometryScriptDebug = Ellipsis) Tuple[StaticMesh, GeometryScriptOutcomePins]

deprecated: ‘create_new_static_mesh_asset_from_mesh_lo_ds’ was renamed to ‘create_new_static_mesh_asset_from_mesh_lods’.

classmethod create_new_static_mesh_asset_from_mesh_lods(from_dynamic_mesh, asset_path_and_name, options, debug=None) -> (StaticMesh, outcome=GeometryScriptOutcomePins)

Create a new StaticMesh asset from a collection of LODs represented by an array of DynamicMeshes. Save the asset at the AssetPathAndName location.

Parameters:
Returns:

outcome (GeometryScriptOutcomePins):

Return type:

GeometryScriptOutcomePins

classmethod create_new_texture2d_asset(from_texture, asset_path_and_name, options, debug=None) -> (Texture2D, outcome=GeometryScriptOutcomePins)

Create New Texture 2DAsset

Parameters:
Returns:

outcome (GeometryScriptOutcomePins):

Return type:

GeometryScriptOutcomePins

classmethod create_new_volume_from_mesh(from_dynamic_mesh, create_in_world, actor_transform, base_actor_name, options, debug=None) -> (Volume, create_in_world=World, outcome=GeometryScriptOutcomePins)

Create a new Volume from a Dynamic Mesh, in the specified world.

Parameters:
Returns:

create_in_world (World):

outcome (GeometryScriptOutcomePins):

Return type:

tuple

classmethod create_new_volume_from_mesh_world_context(world_context_object, from_dynamic_mesh, actor_transform, base_actor_name, options, debug=None) -> (Volume, outcome=GeometryScriptOutcomePins)

Create a new Volume from a Dynamic Mesh, in the same world as the calling blueprint.

Parameters:
Returns:

outcome (GeometryScriptOutcomePins):

Return type:

GeometryScriptOutcomePins

classmethod create_unique_new_asset_path_name(asset_folder_path, base_asset_name, options, debug=None) -> (unique_asset_path_and_name=str, unique_asset_name=str, outcome=GeometryScriptOutcomePins)

Create Unique New Asset Path Name

Parameters:
Returns:

unique_asset_path_and_name (str):

unique_asset_name (str):

outcome (GeometryScriptOutcomePins):

Return type:

tuple