ASSEMBLER
  • Assembler UI
    • Overview
    • Installation
      • Application
      • Delegate
    • Edition
      • Project
      • Group
      • Process Group
      • Creation Group
    • Logs
  • Use Cases
    • Learning
      • 3D Design - Maya
        • Object
        • Reserved Object
        • Transform
        • Deformer
        • Material
        • Merge
        • Render
        • Motion
      • 3D Design - Max
        • Object
        • Reserved Object
        • Transform
        • Modifier
        • Material
        • Merge
        • Render
        • Motion
      • Compositing - Nuke
        • Create Node
        • Animate Knob
        • Node Group
        • Render
        • Template
        • Export
    • Pipeline Integration
      • Overview
      • Scene Config - Maya
      • Data Sharing - Maya, Nuke
    • Modelisation and Anim
      • Othoniel Kiosk - Max
      • Funny Grass - Maya
      • Jungle bridges - Max
      • Magic Foutain - Max
  • Specifications
    • Overview
    • Project
      • Overview
      • Workspace
      • Creation Group
      • Process Group
    • Creation
      • Overview
      • Indexed Creation
      • Process Use
    • Process
      • Overview
      • 3D Desgin - Maya
      • 3D Design - Max
      • Compositing - Nuke
      • Pipeline
    • Function
      • Overview
      • Temporal Function
    • Motion
      • Overview
    • Template
    • Format
  • References
    • Maya Node Attributes
      • Object
      • Reserved Object
      • Shader
      • Deformer
      • Transform
      • Render
    • Max Class Properties
    • Nuke Node Knobs

Object - Max

 These use cases show how to create objects.
Create objects 

Create objects

  How to create a teapot, a sphere, a torus and a plane.
process
<Process id="createObject" type="3d">
    <Param name="reset">1</Param>
    <Object create="object" name="teapot">
        <Param name="class">teapot</Param>
        <Param name="radius">10</Param>
    </Object>
    <Object create="object" name="sphere">
        <Param name="class">sphere</Param>
        <Param name="radius">10</Param>
        <Param name="pos.x">30</Param>
    </Object>
    <Object create="object" name="torus">
        <Param name="class">torus</Param>
        <Param name="radius1">10</Param>
        <Param name="radius2">3</Param>
        <Param name="pos.x">60</Param>
    </Object>
    <Object create="object" name="plane">
        <Param name="class">plane</Param>
        <Param name="length">20</Param>
        <Param name="width">40</Param>
        <Param name="pos.x">-20</Param>
        <Param name="rot.y">90</Param>
    </Object>
</Process>
result
 Specifications: Process
@ assembler 2017