Skip to content

Commit

Permalink
Bump to next SwiftUSD evolution.
Browse files Browse the repository at this point in the history
* SwiftUSD v23.11.21 grants us USD with iOS support.
  • Loading branch information
furby-tm committed Jan 15, 2024
1 parent 70e7298 commit bfb0148
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Kraken.usda
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#usda 1.0
(
doc = "Kraken v1.0.3"
doc = "Kraken v1.0.4"
)

def Xform "Hello"
Expand Down
16 changes: 8 additions & 8 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -32,26 +32,26 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/wabiverse/MetaverseKit.git",
"state" : {
"revision" : "d54cecb09aee115361d635134471e5b7dceb72a8",
"version" : "1.4.2"
"revision" : "85c0b5bc0dae2f94f8dffa99223745fa7fc239ff",
"version" : "1.4.3"
}
},
{
"identity" : "metaversepythonframework",
"kind" : "remoteSourceControl",
"location" : "https://github.com/wabiverse/MetaversePythonFramework",
"state" : {
"revision" : "7e0507f8c9bd4aa18e23b62f896b0ee766d696c1",
"version" : "3.11.4"
"revision" : "fc6d15f768b0a675207aecea248bd4f63f4c4133",
"version" : "3.11.6"
}
},
{
"identity" : "metaversevulkanframework",
"kind" : "remoteSourceControl",
"location" : "https://github.com/wabiverse/MetaverseVulkanFramework",
"state" : {
"revision" : "d81c5b35576887a5e04211657cca1535b43ab0a5",
"version" : "1.26.1"
"revision" : "13c7061599c61a4959c558d8ec1836e5b32b640b",
"version" : "1.26.2"
}
},
{
Expand Down Expand Up @@ -203,8 +203,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/wabiverse/SwiftUSD.git",
"state" : {
"revision" : "e942c3b7f55462f2d6c60d004ef7a80bb65ac0ed",
"version" : "23.11.20"
"revision" : "7b6128757848e06b095c2b918986704aff1d6fa4",
"version" : "23.11.21"
}
},
{
Expand Down
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ let package = Package(
platforms: [
.macOS(.v14),
.visionOS(.v1),
.iOS(.v16),
.tvOS(.v16),
.watchOS(.v9)
.iOS(.v17),
.tvOS(.v17),
.watchOS(.v10)
],
// --- 📦 Package Products. ---
products: [
Expand All @@ -29,7 +29,7 @@ let package = Package(
// --- 🦄 Package Dependencies. ---
dependencies: [
.package(url: "https://github.com/furby-tm/swift-bundler", from: "2.0.9"),
.package(url: "https://github.com/wabiverse/SwiftUSD.git", from: "23.11.20")
.package(url: "https://github.com/wabiverse/SwiftUSD.git", from: "23.11.21")
],

// --- 🎯 Package Targets. ---
Expand Down
8 changes: 4 additions & 4 deletions Sources/Kraken/Creator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ import SwiftUI
@main
struct Kraken: App
{
static let version = Pixar.Gf.Vec3i(1, 0, 3)
static let version = Pixar.Gf.Vec3i(1, 0, 4)

init()
{
/* setup usd plugins & resources. */
Pixar.Bundler.shared.setup(.resources)

/* embed & init python. */
PyBundle.shared.pyInit()
PyBundle.shared.pyInfo()
PyBundler.shared.pyInit()
PyBundler.shared.pyInfo()

/* -------------------------------------------------------- */

Expand All @@ -61,7 +61,7 @@ struct Kraken: App
/* -------------------------------------------------------- */

/* hello metaverse. */
UsdStage("Kraken.usda")
UsdStage("Kraken", ext: .usda)
{
// 👋.
UsdPrim("Hello", type: .xform)
Expand Down

0 comments on commit bfb0148

Please sign in to comment.