기술 자료

​
​

Development

User Acquisition

Monetization

산업 분야

Unity Cloud

Get Started

Asset Manager SDKs and services

Open Unity Dashboard

Unity Cloud

이 페이지는 선택한 언어로 제공되지 않습니다.
​
​
Unity Dashboard
  • Accounts
  • Organizations
  • Projects
  • Products
  • Billing
Developer Data
  • Introduction to the Developer Data Framework
  • Get started
  • View Diagnostics for your project
  • Privacy and consent
Unity Asset Manager
  • What's new
  • Asset Manager web
  • Asset Store
  • Manage Assets in the Editor
  • Unity Version Control
  • Developer documentation
    • Asset Manager SDKs and services
    • Integrations
      • Get started with your Asset Manager integration
      • Unity Cloud Python SDK
        • Prerequisites
        • Get started
        • Security information
        • Manage Identity
        • Manage assets
        • Manage asset versions
        • Manage datasets and files
        • Manage metadata
        • Manage collections
        • Manage transformations
        • Manage asset status
        • Manage VCS integrations
        • Open Dashboard
        • Configure Self-Hosted Deployment
        • Samples
        • Configure logs
        • Troubleshooting
      • Unity Pipeline Automation
      • Asset Manager for Unity Asset Transformer Studio
      • Asset Manager for Blender
Unity Pipeline Automation
  • About
  • Get started
  • Pipelines
  • Automations
  • Monitor jobs
  1. Unity Cloud Documentation
  2. Asset Manager
  3. Unity Cloud Python SDK

Manage asset status

How to manage asset status
읽는 시간 2분
최근 업데이트: 일 년 전

Prerequisites

To access any assets, make sure the app has the right permissions. Read more about managing Identity.
참고
Initialization is required before executing the following code snippets. To learn more about the
initialize()
and
uninitialize()
methods, read about getting started with the Unity Cloud Python SDK.

Get the reachable status of an asset

The status that an asset can reach depends on its current status and the assigned status flow. To list the reachable status of an asset, call the
get_asset_reachable_statuses
method.
reachable_status = unity_cloud.assets.get_asset_reachable_statuses( org_id = "012345678912", project_id = "1234abcd-ab12-cd34-ef56-123456abcdef", asset_id = "0123456789abcdefghijklmn", asset_version = '1234abcd-ab12-cd34-ef56-123456abcdef' )

Update asset status

Using the result of
get_asset_reachable_statuses
, you can update the status of an asset. To do so, call the
update_asset_status
method.
unity_cloud.assets.update_asset_status( org_id = "012345678912", project_id = "1234abcd-ab12-cd34-ef56-123456abcdef", asset_id = "0123456789abcdefghijklmn", asset_version = '1234abcd-ab12-cd34-ef56-123456abcdef', status = "status" )

Get a status flow

To get the status flow of an asset, call the
get_asset_status_flow
method. With this feature, you can explore the whole state machine of statuses an asset can reach and the transitions between them.
status_flow = unity_cloud.assets.get_asset_status_flow( org_id = "012345678912", project_id = "1234abcd-ab12-cd34-ef56-123456abcdef", asset_id = "0123456789abcdefghijklmn", asset_version = '1234abcd-ab12-cd34-ef56-123456abcdef' )

List all status flows

To list all status flows of an organization, call the
list_status_flow
method.
status_flows = unity_cloud.assets.list_status_flow( org_id = "012345678912" )

Change the status flow assigned to an asset

To change the status flow assigned to an asset, call the
update_asset_status_flow
method.
unity_cloud.assets.update_asset_status_flow( org_id = "012345678912", project_id = "1234abcd-ab12-cd34-ef56-123456abcdef", asset_id = "0123456789abcdefghijklmn", asset_version = '1234abcd-ab12-cd34-ef56-123456abcdef', status_flow_id = "1234abcd-ab12-cd34-ef56-123456abcdef" )

Copyright © 2026 Unity Technologies
법률 정보개인정보 처리방침쿠키Documentation Terms of Use개인 정보 판매 또는 공유 금지개인정보 보호 선택(쿠키 설정)

'Unity', Unity 로고 및 기타 Unity 상표는 미국 및 기타 지역 내 Unity Technologies 또는 그 계열사의 상표 또는 등록상표입니다(자세한 내용은 여기에서 확인하세요). 기타 명칭 또는 브랜드는 해당 소유자의 상표입니다.

일부 페이지는 편의를 위해 기계 번역되었으며 부정확한 내용이 있을 수 있습니다. 정보가 상충되는 경우, 영어 버전을 우선으로 참조하세요.

  • 보고 있는 페이지
    • Prerequisites

    • Get the reachable status of an asset

    • Update asset status

    • Get a status flow

    • List all status flows

    • Change the status flow assigned to an asset


이 페이지의 문제 보고