[docs]classdefault_scene(BaseModel):"""Visit the default scene."""type:Literal["default_scene"]="default_scene"model_config=ConfigDict(protected_namespaces=())
[docs]classscene_by_index(BaseModel):"""Visit the indexed scene."""index:inttype:Literal["scene_by_index"]="scene_by_index"model_config=ConfigDict(protected_namespaces=())
[docs]classscene_by_name(BaseModel):"""Visit the first scene with the given name."""name:strtype:Literal["scene_by_name"]="scene_by_name"model_config=ConfigDict(protected_namespaces=())
[docs]classmesh_by_index(BaseModel):"""Visit the indexed mesh."""index:inttype:Literal["mesh_by_index"]="mesh_by_index"model_config=ConfigDict(protected_namespaces=())
[docs]classmesh_by_name(BaseModel):"""Visit the first mesh with the given name."""name:strtype:Literal["mesh_by_name"]="mesh_by_name"model_config=ConfigDict(protected_namespaces=())