Automated: update 'BakeMesh()' description |
add missing field and clean |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
<translate> | <translate> | ||
<!--T:1--> | <!--T:1--> | ||
{{Infobox Component | {{Infobox Component | ||
|Image=MultiSegmentMeshComponent.png | |Image=MultiSegmentMeshComponent.png | ||
|Name=Multi Segment Mesh | |Name=Multi Segment Mesh | ||
}} | }} | ||
Multi line segment mesh is a component that generates mesh data for use with a [[Component:SkinnedMeshRenderer|SkinnedMeshRenderer]]. It uses a list of [[#SegmentInfo|lines]] to generate lines of geometry with varying thickness. | |||
<!--T:2--> | <!--T:2--> | ||
Line 12: | Line 12: | ||
{{Table ComponentFields | {{Table ComponentFields | ||
|HighPriorityIntegration|Bool|{{Asset HighPriorityIntegration Field}} | |HighPriorityIntegration|Bool|{{Asset HighPriorityIntegration Field}} | ||
|OverrideBoundingBox|Bool| | |OverrideBoundingBox|Bool| {{Template:Override Bounding Box}} | ||
|OverridenBoundingBox|BoundingBox| | |OverridenBoundingBox|BoundingBox| {{Template:Overridden Bounding Box}} | ||
|Profile|ColorProfile| | |Profile|ColorProfile| {{Template:ProceduralMeshColorProfile}} | ||
|Sides|Int| | |Sides|Int| how many faces around each line (circle wise) that the lines have. | ||
|Segments|{{RootFieldType|SyncList`1|[[#SegmentInfo|SegmentInfo]]}}| | |FlipNormalDirection|Bool| Flips the normals on the generated mesh data. | ||
|Segments|{{RootFieldType|SyncList`1|[[#SegmentInfo|MultiSegmentMesh.SegmentInfo]]}}|TypeAdv6=true| Different lines that make up the mesh. | |||
}} | }} | ||
== Sync Delegates == | == Sync Delegates == | ||
{{Table ComponentTriggers | {{Table ComponentTriggers | ||
|BakeMesh | |BakeMesh:[[Type:Action|Action]]|[[Type:Action|Action]]|false|{{Template:BakeMeshSyncMethod}} | ||
}} | }} | ||
Line 28: | Line 29: | ||
== SegmentInfo == | == SegmentInfo == | ||
{{Table TypeFields | {{Table TypeFields | ||
|Radius|Float| | |Radius|Float| how thick the line is in local space | ||
|PointA|Float3| | |PointA|Float3| The position of the start of the line in local space | ||
|PointB|Float3| | |PointB|Float3| The position of the end of the line in local space | ||
}} | }} | ||
Line 41: | Line 39: | ||
<!--T:5--> | <!--T:5--> | ||
== | == See Also == | ||
</translate> | </translate> | ||
[[Category:Components{{#translation:}}|Multi Segment Mesh]] | [[Category:Components{{#translation:}}|Multi Segment Mesh]] | ||
[[Category:Components:Assets:Procedural Meshes{{#translation:}}|Multi Segment Mesh]] | [[Category:Components:Assets:Procedural Meshes{{#translation:}}|Multi Segment Mesh]] | ||
[[Category:Components With Nested Types{{#translation:}}|Multi Segment Mesh]] | [[Category:Components With Nested Types{{#translation:}}|Multi Segment Mesh]] |
Latest revision as of 20:37, 7 April 2025
Component image 
Multi Segment Mesh component as seen in the Scene Inspector

Multi line segment mesh is a component that generates mesh data for use with a SkinnedMeshRenderer. It uses a list of lines to generate lines of geometry with varying thickness.
Fields
Name | Type | Description |
---|---|---|
persistent
|
Bool | Determines whether or not this item will be saved to the server. |
UpdateOrder
|
Int | Controls the order in which this component is updated. |
Enabled
|
Bool | Controls whether or not this component is enabled. Some components stop their functionality when this field is disabled, but some don't. |
HighPriorityIntegration
|
Bool | If true, integrating this asset (e.g. processing procedural assets) gets higher priority than assets with this flag off. An example is user laser procedural meshes. |
OverrideBoundingBox
|
Bool | Force the bounding box calculated from this component to use OverridenBoundingBox instead of calculating when requested.
|
OverridenBoundingBox
|
BoundingBox | the bounding box this component should say it has when OverrideBoundingBox is enabled. Useful for bounding box calculations with Flux, or changing the selection box for this component when rendered.
|
Profile
|
ColorProfile | The profile that the vertex colors for this mesh should be displayed in. |
Sides
|
Int | how many faces around each line (circle wise) that the lines have. |
FlipNormalDirection
|
Bool | Flips the normals on the generated mesh data. |
Segments
|
list of MultiSegmentMesh.SegmentInfo | Different lines that make up the mesh. |