View in English

  • Apple Developer
    • 今すぐ始める

    「今すぐ始める」を詳しく見る

    • 概要
    • 学ぶ
    • Apple Developer Program

    最新情報

    • 最新ニュース
    • Hello Developer
    • プラットフォーム

    プラットフォームを詳しく見る

    • Appleプラットフォーム
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    • App Store

    特集

    • デザイン
    • 配信
    • ゲーム
    • アクセサリ
    • Web
    • Home
    • CarPlay
    • テクノロジー

    テクノロジーを詳しく見る

    • 概要
    • Xcode
    • Swift
    • SwiftUI

    特集

    • アクセシビリティ
    • App Intent
    • Apple Intelligence
    • ゲーム
    • 機械学習とAI
    • セキュリティ
    • Xcode Cloud
    • コミュニティ

    コミュニティを詳しく見る

    • 概要
    • 「Appleに相談」イベント
    • コミュニティによるイベント
    • デベロッパフォーラム
    • オープンソース

    特集

    • WWDC
    • Swift Student Challenge
    • デベロッパストーリー
    • App Store Awards
    • Apple Design Awards
    • Apple Developer Center
    • ドキュメント

    ドキュメントを詳しく見る

    • ドキュメントライブラリ
    • テクノロジー概要
    • サンプルコード
    • ヒューマンインターフェイスガイドライン
    • ビデオ

    リリースノート

    • 注目のアップデート
    • iOS
    • iPadOS
    • macOS
    • watchOS
    • visionOS
    • tvOS
    • Xcode
    • ダウンロード

    ダウンロードを詳しく見る

    • すべてのダウンロード
    • オペレーティングシステム
    • アプリ
    • デザインリソース

    特集

    • Xcode
    • TestFlight
    • フォント
    • SF Symbols
    • Icon Composer
    • サポート

    サポートを詳しく見る

    • 概要
    • ヘルプガイド
    • デベロッパフォーラム
    • フィードバックアシスタント
    • お問い合わせ

    特集

    • アカウントヘルプ
    • App Reviewガイドライン
    • App Store Connectヘルプ
    • 近日導入予定の要件
    • 契約およびガイドライン
    • システムステータス
  • クイックリンク

    • イベント
    • ニュース
    • Forum
    • サンプルコード
    • ビデオ
 

ビデオ

メニューを開く メニューを閉じる
  • コレクション
  • すべてのビデオ
  • 利用方法

その他のビデオ

  • 概要
  • Summary
  • コード
  • USDKitの概要とOpenUSDの新機能

    AppleプラットフォームにおけるUniversal Scene Description(USD)サポートの最新の進歩について、SwiftベースのUSDKit、新しいSpatial Preview API、強化された空間Web機能などを中心に紹介します。OpenUSD標準の最新アップデートで追加された、アクセシビリティ、ガウシアンスプラッティング、圧縮ジオメトリのサポートについて確認しましょう。Macの「プレビュー」のUSD編集およびレンダリングのツールの機能拡張の概要と、これらの機能をアプリで活用する方法も解説します。

    関連する章

    • 0:07 - Introduction
    • 0:53 - OpenUSD: Industry Foundation and New Standards
    • 2:51 - Gaussian Splats and Particle Fields
    • 3:47 - Introducing USDKit
    • 4:06 - 3D Editing in Preview and New Renderers
    • 5:42 - Spatial Preview: Live Collaboration Between Mac and Vision Pro
    • 6:25 - USD on the Web: The Safari Model Tag
    • 6:57 - USDKit: Key Concepts and Swift API Walkthrough
    • 10:05 - Accessibility Metadata in USD
    • 11:19 - Asset Compression: Mesh and Texture
    • 12:36 - Integration Paths: USDKit, SwiftUSD, and OpenUSD
    • 13:24 - Next steps

    リソース

      • HDビデオ
      • SDビデオ

    関連ビデオ

    WWDC26

    • Spatial Previewフレームワークの詳細
  • このビデオを検索
    • 8:12 - Opening a USD Stage

      import USDKit
      
      // Create a new empty in-memory stage
      
      let stage = USDStage()
      
      // Open a stage from a file on disk
      
      let url = URL(fileURLWithPath: "/ALab/entry.usda")
      let stage = try USDStage.open(url)
    • 8:44 - Traversing the Stage Hierarchy

      // Traverse all prims looking for the oscilloscope
      for prim in stage.descendants {
          if prim.name == "scope" {
              // There it is! 🔬
          }
      }
      
      // It wasn't there — define a new Xform prim for it
      
      let scope = stage.definePrim(at: "/World/scope", type: “Xform"))
                                   
      // Add a file reference to the prim
      
      try scope.references.add(“/ALab/assets/scope.usda”)
    • 9:36 - Moving a Prim with a Transform Operation

      // Creates xformOp:translate and updates xformOpOrder automatically
      
      scope.addTransformOperation(type: .translate)
      scope["xformOp:translate", as: USDValue.Vec3d.self] = [2.5, 0.0, -1.0]
    • 10:42 - Applying Accessibility Metadata

      // Apply the multi-apply AccessibilityAPI schema with instance name "default"
      
      try scope.applyAPISchema("AccessibilityAPI", instanceName:"default")
      
      // Create the label and description attributes
      
      scope.makeAttribute(named: "accessibility:default:label", as: .string)
      scope.makeAttribute(named: "accessibility:default:description", as: .string)
      
      // Set their values
      
      scope["accessibility:default:label", as: String.self] = "Oscilloscope"
      scope["accessibility:default:description", as: String.self] = 
          "Vintage signal analyzer with a 3D wireframe display, topped by a color bar test monitor"
    • 12:05 - Exporting with Mesh and Texture Compression

      let output = URL(fileURLWithPath: "/ALab/alab_compressed.usdz")
      
      // Export the stage as a USDZ package
      
      try stage.exportPackage(
          to: output,
          options: [
              .preferSmallTextureFiles(quality: .standard),   // compress textures
              .preferSmallMeshFiles                           // compress mesh geometry
          ]
      )
    • 0:07 - Introduction
    • Frames USD as the backbone of Apple's spatial experiences and outlines the topics covered: foundational USD updates, the new USDKit framework, and how they enable rich 3D experiences across Apple platforms.

    • 0:53 - OpenUSD: Industry Foundation and New Standards
    • Apple's evolving role in the OpenUSD ecosystem: updates to OpenUSD, MaterialX, and OpenVDB across all platforms; Apple's membership in the Academy Software Foundation and Alliance for OpenUSD; and the release of the first formal USD core specification.

    • 2:51 - Gaussian Splats and Particle Fields
    • Introduces a new USD primitive type — Particle Fields — co-developed with NVIDIA, Adobe, and Pixar through the Alliance for OpenUSD, enabling Gaussian Splats to be represented natively in USD and composited alongside traditional 3D data.

    • 3:47 - Introducing USDKit
    • A high-level overview of USDKit, the new first-party Swift framework that brings USD support to Apple apps with built-in RealityKit and Spatial Preview integration, designed to be approachable for both USD veterans and Swift developers new to 3D.

    • 4:06 - 3D Editing in Preview and New Renderers
    • Preview on Mac gains essential 3D editing capabilities: direct scene manipulation, property and lighting editing, hierarchy browsing, and asset conversion — all backed by a choice of three renderers: RealityKit, Storm, and a new high-fidelity Raytracer. All three support OpenPBR materials.

    • 5:42 - Spatial Preview: Live Collaboration Between Mac and Vision Pro
    • The new Spatial Preview framework on macOS 27 creates a live link between Preview on Mac and Quick Look on Vision Pro, enabling real-time spatial review and SharePlay collaboration. Developers can integrate the same workflow into their own Mac apps.

    • 6:25 - USD on the Web: The Safari Model Tag
    • Safari's new Model tag brings interactive 3D USD content to web pages on macOS and iOS, with full spatial breakout on visionOS — making USD as native to the web as images and video.

    • 6:57 - USDKit: Key Concepts and Swift API Walkthrough
    • A walkthrough of core USD concepts — Layers, Composition, Stages, Prims, Schemas, Attributes, and Metadata — followed by a practical Swift code example: opening a stage, traversing the hierarchy, adding a referenced asset via composition, and repositioning it with transform operations.

    • 10:05 - Accessibility Metadata in USD
    • Apple has driven standardization of accessibility metadata directly in USD, defining how assistive labels and descriptions are authored on 3D objects. The API is supported in Blender and Maya, and the USDKit walkthrough shows how to apply the AccessibilityAPI schema and set label and description attributes.

    • 11:19 - Asset Compression: Mesh and Texture
    • Introduces state-of-the-art mesh compression (up to 90% reduction) developed with the Alliance for Open Media, combined with existing AVIF texture compression — achieving 7× smaller assets on average. Demonstrated via USDKit's exportPackage API, Preview's UI, and the usdcrush command-line tool.

    • 12:36 - Integration Paths: USDKit, SwiftUSD, and OpenUSD
    • Outlines the three integration paths: USDKit for Apple platform app developers; SwiftUSD via Swift Package Manager for advanced or open-source Swift workflows; and OpenUSD as an embeddable C++ framework for cross-platform codebases. All share the same USD foundation, ensuring file interoperability.

    • 13:24 - Next steps
    • Recap of the session's key announcements — 3D editing in Preview, Spatial Preview collaboration, the Safari Model tag, and USDKit — with pointers to related sessions on Spatial Preview, USD on the web, RealityKit and Reality Composer Pro.

Developer Footer

  • ビデオ
  • WWDC26
  • USDKitの概要とOpenUSDの新機能
  • メニューを開く メニューを閉じる
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    Open Menu Close Menu
    • Swift
    • SwiftUI
    • Swift Playground
    • TestFlight
    • Xcode
    • Xcode Cloud
    • SF Symbols
    メニューを開く メニューを閉じる
    • アクセシビリティ
    • アクセサリ
    • Apple Intelligence
    • App Extension
    • App Store
    • オーディオとビデオ(英語)
    • 拡張現実
    • デザイン
    • 配信
    • 教育
    • フォント(英語)
    • ゲーム
    • ヘルスケアとフィットネス
    • アプリ内課金
    • ローカリゼーション
    • マップと位置情報
    • 機械学習とAI
    • オープンソース(英語)
    • セキュリティ
    • SafariとWeb(英語)
    メニューを開く メニューを閉じる
    • 英語ドキュメント(完全版)
    • 日本語ドキュメント(一部トピック)
    • チュートリアル
    • ダウンロード
    • フォーラム(英語)
    • ビデオ
    Open Menu Close Menu
    • サポートドキュメント
    • お問い合わせ
    • バグ報告
    • システム状況(英語)
    メニューを開く メニューを閉じる
    • Apple Developer
    • App Store Connect
    • Certificates, IDs, & Profiles(英語)
    • フィードバックアシスタント
    メニューを開く メニューを閉じる
    • Apple Developer Program
    • Apple Developer Enterprise Program
    • App Store Small Business Program
    • MFi Program(英語)
    • Mini Apps Partner Program
    • News Partner Program(英語)
    • Video Partner Program(英語)
    • セキュリティ報奨金プログラム(英語)
    • Security Research Device Program(英語)
    Open Menu Close Menu
    • Appleに相談
    • Apple Developer Center
    • App Store Awards(英語)
    • Apple Design Awards
    • Apple Developer Academy(英語)
    • WWDC
    最新ニュースを読む。
    Apple Developerアプリを入手する。
    Copyright © 2026 Apple Inc. All rights reserved.
    利用規約 プライバシーポリシー 契約とガイドライン