ドキュメント

​
​

Development

User Acquisition

Monetization

産業

Asset Transformer SDK

2026.4

サポート対象
​

User Manual

Python API

C# API

Changelog

Discussions

Asset Transformer SDK

2026.4

サポート対象
​

このページは選択した言語では使用できません。
​
​
Get started
  • System requirements
  • Licensing
  • Setup
  • Migrate from Scenario Processor
Framework
  • Framework
  • Preferences
Input/output files
  • Supported formats
  • Import files
  • Export files
  • Export textures
  • CAD vs Mesh
Scene
  • Product structure
  • Occurrence
  • Component
    • Part
    • Metadata
    • SubpartMaterial
  • Material
  • Image
Algorithms
  • CAD
  • Healing
  • Optimization
  • Combine and bake
  • Reconstruction
  • UVs
Viewer
  • Viewer
Pixyz UI
  • Setup
  • Overview
  • Create a custom UI
Guidelines
  • Data preparation
  • Process point clouds
Debug and diagnose
  • Log files
  • Debug best practices
Other
  • Samples
  • Glossary
  1. Asset Transformer SDK (ex Pixyz)

Part

Learn about Part components in Pixyz scenes, including their properties, how to retrieve geometry information, and methods for duplication.
読み終わるまでの所要時間 2 分
最終更新 3ヶ月前

API reference
Parts are components that contain geometry information, such as information related to CAD, meshes, lines, and UVs. "Part occurrences" is a term often used to refer to occurrences containing part components.
Part properties:

Property

Type

Description

IdIdentA unique unsigned int identifier.
BRepShapeInitialEntityOriginal CAD geometry data before tessellation.
BRepShapeModifiedEntity
TessellatedShapeEntityMesh information.
TransformMatrix4Local transform matrix of this part component, storing local position, rotation and scale information.
ヒント
Use scene.getPartOccurrences(root) to retrieve all part occurrences under the
root
occurrence.
Use definitions to retrieve geometry information from a Part component. This example shows how to retrieve the position of vertices of a mesh (Mesh) through its definition (MeshDefinition):
part = pxz.scene.getComponent(occurrence, pxz.scene.ComponentType.Part)# "part == 0" means that the occurrence doesn't have a part component.if (part > 0){ mesh = pxz.scene.getPartMesh(part) # "mesh == 0" means that no mesh is attached to the part. if (mesh > 0) { # Queries geometry information from meshes. meshDef = pxz.polygonal.getMeshDefinition(mesh) vertices = meshDef.vertices # … }}
To duplicate a part, use the core.cloneEntity method. This snippet shows how to create a new occurrence that shares the same part component as its input:
# Gets the components to be duplicated.partComponent = pxz.scene.getComponent(occ, pxz.scene.ComponentType.Part)# Creates an occurrence.lod = pxz.scene.createOccurrence("_LOD1")# Sets the part component of the cloned occurrence as the part component of the new occurrence.pxz.scene.setComponentOccurrence(pxz.core.cloneEntity(part), lod)pxz.scene.setParent(lod, occ)

Copyright © 2026 Unity Technologies
法規事項プライバシーポリシークッキーDocumentation Terms of Use私の個人情報を販売または共有しないプライバシーに関する選択 (クッキー設定)

"Unity" の名称、Unity のロゴ、およびその他の Unity の商標は、米国およびその他の国における Unity Technologies またはその関係会社の商標または登録商標です (詳しくはこちら)。その他の名称またはブランドは該当する所有者の商標です。

一部のページは利便性向上のため機械翻訳を使用しており、内容に不正確な表現が含まれる場合があります。内容に齟齬または不一致が生じた場合は、英語版を正本とします。


    このページの問題を報告する