Datasets:
ArXiv:
License:
Add SeattleLabTable + apply scene patches across 9 kitchens 本 PR 将 RegraspGen 项目对 9 个 kitchen 环境的本地修改一次性推到 dataset. 1. playing_cards_kitchen/scene.usda: 加入 SeattleLabTable reference (替代损坏的 board_0). 2. playing_cards_kitchen/assets/seattle_lab_table/{table_instanceable, table}.usd: 新增 SeattleLabTable 共享资产 (从 NVIDIA Nucleus 下载本地化, ~10.5MB). 3. 7 RoboTwin kitchens (drill/dumbbell/jamjar/milkbox/mug/oliveoil/shoe): scene.usda 加入 SeattleLabTable reference (跨任务 reference ../playing_cards_kitchen/assets/seattle_lab_table/), 关闭 board_0. 4. 新增 perfumekitchen 任务 (RoboTwin 115_perfume base0): scene.usda + assets/perfume_0/. 动机: 原 board_0 桌子 PhysX 凸分解 + 非均匀缩放导致碰撞面错误,物体下沉. 改用 Isaac Lab 标准 SeattleLabTable.
#8
by Litian2002 - opened
- drillkitchen/scene.usda +18 -2
- dumbbellkitchen/scene.usda +18 -2
- jamjarkitchen/scene.usda +18 -2
- milkboxkitchen/scene.usda +18 -2
- mugkitchen/scene.usda +18 -2
- oliveoilkitchen/scene.usda +18 -2
- perfumekitchen/assets/perfume_0/config.yaml +47 -0
- perfumekitchen/assets/perfume_0/mesh.usd +3 -0
- perfumekitchen/assets/perfume_0/textures/texture_diffuse.png +3 -0
- perfumekitchen/assets/perfume_0/textures/texture_metallic-texture_roughness.png +3 -0
- perfumekitchen/assets/perfume_0/textures/texture_normal.png +3 -0
- perfumekitchen/scene.usda +85 -0
- playing_cards_kitchen/assets/seattle_lab_table/table.usd +3 -0
- playing_cards_kitchen/assets/seattle_lab_table/table_instanceable.usd +3 -0
- playing_cards_kitchen/scene.usda +163 -45
- shoekitchen/scene.usda +18 -2
drillkitchen/scene.usda
CHANGED
|
@@ -56,9 +56,25 @@ def Xform "World"
|
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
-
#
|
| 60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
active = true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 63 |
)
|
| 64 |
{
|
|
|
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
+
# SeattleLabTable: replaces board_0 (board_0 has broken collision due to
|
| 60 |
+
# convex-decomposition + non-uniform scaling in the original mesh).
|
| 61 |
+
# Transform mirrors PolarisPlacementEnvCfg.table:
|
| 62 |
+
# pos = (0.5, 0, 0), rot wxyz = (0.707, 0, 0, 0.707)
|
| 63 |
+
# Reference shared assets from playing_cards_kitchen/ to avoid duplication.
|
| 64 |
+
def Xform "seattle_lab_table" (
|
| 65 |
active = true
|
| 66 |
+
prepend references = @../playing_cards_kitchen/assets/seattle_lab_table/table_instanceable.usd@
|
| 67 |
+
)
|
| 68 |
+
{
|
| 69 |
+
quatf xformOp:orient = (0.707, 0.0, 0.0, 0.707)
|
| 70 |
+
float3 xformOp:scale = (1, 1, 1)
|
| 71 |
+
double3 xformOp:translate = (0.5, 0.0, 0.0)
|
| 72 |
+
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
# Board object - DISABLED (broken collision; replaced by SeattleLabTable above)
|
| 76 |
+
def "board_0" (
|
| 77 |
+
active = false
|
| 78 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 79 |
)
|
| 80 |
{
|
dumbbellkitchen/scene.usda
CHANGED
|
@@ -56,9 +56,25 @@ def Xform "World"
|
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
-
#
|
| 60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
active = true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 63 |
)
|
| 64 |
{
|
|
|
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
+
# SeattleLabTable: replaces board_0 (board_0 has broken collision due to
|
| 60 |
+
# convex-decomposition + non-uniform scaling in the original mesh).
|
| 61 |
+
# Transform mirrors PolarisPlacementEnvCfg.table:
|
| 62 |
+
# pos = (0.5, 0, 0), rot wxyz = (0.707, 0, 0, 0.707)
|
| 63 |
+
# Reference shared assets from playing_cards_kitchen/ to avoid duplication.
|
| 64 |
+
def Xform "seattle_lab_table" (
|
| 65 |
active = true
|
| 66 |
+
prepend references = @../playing_cards_kitchen/assets/seattle_lab_table/table_instanceable.usd@
|
| 67 |
+
)
|
| 68 |
+
{
|
| 69 |
+
quatf xformOp:orient = (0.707, 0.0, 0.0, 0.707)
|
| 70 |
+
float3 xformOp:scale = (1, 1, 1)
|
| 71 |
+
double3 xformOp:translate = (0.5, 0.0, 0.0)
|
| 72 |
+
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
# Board object - DISABLED (broken collision; replaced by SeattleLabTable above)
|
| 76 |
+
def "board_0" (
|
| 77 |
+
active = false
|
| 78 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 79 |
)
|
| 80 |
{
|
jamjarkitchen/scene.usda
CHANGED
|
@@ -56,9 +56,25 @@ def Xform "World"
|
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
-
#
|
| 60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
active = true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 63 |
)
|
| 64 |
{
|
|
|
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
+
# SeattleLabTable: replaces board_0 (board_0 has broken collision due to
|
| 60 |
+
# convex-decomposition + non-uniform scaling in the original mesh).
|
| 61 |
+
# Transform mirrors PolarisPlacementEnvCfg.table:
|
| 62 |
+
# pos = (0.5, 0, 0), rot wxyz = (0.707, 0, 0, 0.707)
|
| 63 |
+
# Reference shared assets from playing_cards_kitchen/ to avoid duplication.
|
| 64 |
+
def Xform "seattle_lab_table" (
|
| 65 |
active = true
|
| 66 |
+
prepend references = @../playing_cards_kitchen/assets/seattle_lab_table/table_instanceable.usd@
|
| 67 |
+
)
|
| 68 |
+
{
|
| 69 |
+
quatf xformOp:orient = (0.707, 0.0, 0.0, 0.707)
|
| 70 |
+
float3 xformOp:scale = (1, 1, 1)
|
| 71 |
+
double3 xformOp:translate = (0.5, 0.0, 0.0)
|
| 72 |
+
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
# Board object - DISABLED (broken collision; replaced by SeattleLabTable above)
|
| 76 |
+
def "board_0" (
|
| 77 |
+
active = false
|
| 78 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 79 |
)
|
| 80 |
{
|
milkboxkitchen/scene.usda
CHANGED
|
@@ -56,9 +56,25 @@ def Xform "World"
|
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
-
#
|
| 60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
active = true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 63 |
)
|
| 64 |
{
|
|
|
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
+
# SeattleLabTable: replaces board_0 (board_0 has broken collision due to
|
| 60 |
+
# convex-decomposition + non-uniform scaling in the original mesh).
|
| 61 |
+
# Transform mirrors PolarisPlacementEnvCfg.table:
|
| 62 |
+
# pos = (0.5, 0, 0), rot wxyz = (0.707, 0, 0, 0.707)
|
| 63 |
+
# Reference shared assets from playing_cards_kitchen/ to avoid duplication.
|
| 64 |
+
def Xform "seattle_lab_table" (
|
| 65 |
active = true
|
| 66 |
+
prepend references = @../playing_cards_kitchen/assets/seattle_lab_table/table_instanceable.usd@
|
| 67 |
+
)
|
| 68 |
+
{
|
| 69 |
+
quatf xformOp:orient = (0.707, 0.0, 0.0, 0.707)
|
| 70 |
+
float3 xformOp:scale = (1, 1, 1)
|
| 71 |
+
double3 xformOp:translate = (0.5, 0.0, 0.0)
|
| 72 |
+
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
# Board object - DISABLED (broken collision; replaced by SeattleLabTable above)
|
| 76 |
+
def "board_0" (
|
| 77 |
+
active = false
|
| 78 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 79 |
)
|
| 80 |
{
|
mugkitchen/scene.usda
CHANGED
|
@@ -56,9 +56,25 @@ def Xform "World"
|
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
-
#
|
| 60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
active = true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 63 |
)
|
| 64 |
{
|
|
|
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
+
# SeattleLabTable: replaces board_0 (board_0 has broken collision due to
|
| 60 |
+
# convex-decomposition + non-uniform scaling in the original mesh).
|
| 61 |
+
# Transform mirrors PolarisPlacementEnvCfg.table:
|
| 62 |
+
# pos = (0.5, 0, 0), rot wxyz = (0.707, 0, 0, 0.707)
|
| 63 |
+
# Reference shared assets from playing_cards_kitchen/ to avoid duplication.
|
| 64 |
+
def Xform "seattle_lab_table" (
|
| 65 |
active = true
|
| 66 |
+
prepend references = @../playing_cards_kitchen/assets/seattle_lab_table/table_instanceable.usd@
|
| 67 |
+
)
|
| 68 |
+
{
|
| 69 |
+
quatf xformOp:orient = (0.707, 0.0, 0.0, 0.707)
|
| 70 |
+
float3 xformOp:scale = (1, 1, 1)
|
| 71 |
+
double3 xformOp:translate = (0.5, 0.0, 0.0)
|
| 72 |
+
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
# Board object - DISABLED (broken collision; replaced by SeattleLabTable above)
|
| 76 |
+
def "board_0" (
|
| 77 |
+
active = false
|
| 78 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 79 |
)
|
| 80 |
{
|
oliveoilkitchen/scene.usda
CHANGED
|
@@ -56,9 +56,25 @@ def Xform "World"
|
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
-
#
|
| 60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
active = true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 63 |
)
|
| 64 |
{
|
|
|
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
+
# SeattleLabTable: replaces board_0 (board_0 has broken collision due to
|
| 60 |
+
# convex-decomposition + non-uniform scaling in the original mesh).
|
| 61 |
+
# Transform mirrors PolarisPlacementEnvCfg.table:
|
| 62 |
+
# pos = (0.5, 0, 0), rot wxyz = (0.707, 0, 0, 0.707)
|
| 63 |
+
# Reference shared assets from playing_cards_kitchen/ to avoid duplication.
|
| 64 |
+
def Xform "seattle_lab_table" (
|
| 65 |
active = true
|
| 66 |
+
prepend references = @../playing_cards_kitchen/assets/seattle_lab_table/table_instanceable.usd@
|
| 67 |
+
)
|
| 68 |
+
{
|
| 69 |
+
quatf xformOp:orient = (0.707, 0.0, 0.0, 0.707)
|
| 70 |
+
float3 xformOp:scale = (1, 1, 1)
|
| 71 |
+
double3 xformOp:translate = (0.5, 0.0, 0.0)
|
| 72 |
+
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
# Board object - DISABLED (broken collision; replaced by SeattleLabTable above)
|
| 76 |
+
def "board_0" (
|
| 77 |
+
active = false
|
| 78 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 79 |
)
|
| 80 |
{
|
perfumekitchen/assets/perfume_0/config.yaml
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
asset_path: /home/glt/proj/RegraspGen/my_regrasp/assets/robotwin_objects/objects/115_perfume/visual/base0.glb
|
| 2 |
+
usd_dir: /home/glt/proj/RegraspGen/my_regrasp/envs/polaris/PolaRiS-Hub/perfumekitchen/assets/perfume_0
|
| 3 |
+
usd_file_name: mesh.usd
|
| 4 |
+
force_usd_conversion: true
|
| 5 |
+
make_instanceable: false
|
| 6 |
+
mass_props:
|
| 7 |
+
mass: 0.1
|
| 8 |
+
density: null
|
| 9 |
+
rigid_props:
|
| 10 |
+
rigid_body_enabled: null
|
| 11 |
+
kinematic_enabled: null
|
| 12 |
+
disable_gravity: null
|
| 13 |
+
linear_damping: null
|
| 14 |
+
angular_damping: null
|
| 15 |
+
max_linear_velocity: null
|
| 16 |
+
max_angular_velocity: null
|
| 17 |
+
max_depenetration_velocity: null
|
| 18 |
+
max_contact_impulse: null
|
| 19 |
+
enable_gyroscopic_forces: null
|
| 20 |
+
retain_accelerations: null
|
| 21 |
+
solver_position_iteration_count: null
|
| 22 |
+
solver_velocity_iteration_count: null
|
| 23 |
+
sleep_threshold: null
|
| 24 |
+
stabilization_threshold: null
|
| 25 |
+
collision_props:
|
| 26 |
+
collision_enabled: true
|
| 27 |
+
contact_offset: null
|
| 28 |
+
rest_offset: null
|
| 29 |
+
torsional_patch_radius: null
|
| 30 |
+
min_torsional_patch_radius: null
|
| 31 |
+
mesh_collision_props: null
|
| 32 |
+
translation: !!python/tuple
|
| 33 |
+
- 0.0
|
| 34 |
+
- 0.0
|
| 35 |
+
- 0.0
|
| 36 |
+
rotation: !!python/tuple
|
| 37 |
+
- 1.0
|
| 38 |
+
- 0.0
|
| 39 |
+
- 0.0
|
| 40 |
+
- 0.0
|
| 41 |
+
scale: !!python/tuple
|
| 42 |
+
- 1.0
|
| 43 |
+
- 1.0
|
| 44 |
+
- 1.0
|
| 45 |
+
##
|
| 46 |
+
# Generated by MeshConverter on 2026-04-29 at 20:51:58.
|
| 47 |
+
##
|
perfumekitchen/assets/perfume_0/mesh.usd
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06340310f0caafd200d26017238d1b52322b83bc8ec44bf975496c4f71c07d05
|
| 3 |
+
size 8742111
|
perfumekitchen/assets/perfume_0/textures/texture_diffuse.png
ADDED
|
Git LFS Details
|
perfumekitchen/assets/perfume_0/textures/texture_metallic-texture_roughness.png
ADDED
|
Git LFS Details
|
perfumekitchen/assets/perfume_0/textures/texture_normal.png
ADDED
|
Git LFS Details
|
perfumekitchen/scene.usda
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#usda 1.0
|
| 2 |
+
(
|
| 3 |
+
defaultPrim = "World"
|
| 4 |
+
metersPerUnit = 1
|
| 5 |
+
upAxis = "Z"
|
| 6 |
+
)
|
| 7 |
+
|
| 8 |
+
def Xform "World"
|
| 9 |
+
{
|
| 10 |
+
def "perfume_0" (
|
| 11 |
+
active = true
|
| 12 |
+
prepend apiSchemas = ["PhysicsRigidBodyAPI", "PhysxRigidBodyAPI"]
|
| 13 |
+
prepend payload = @./assets/perfume_0/mesh.usd@
|
| 14 |
+
)
|
| 15 |
+
{
|
| 16 |
+
bool physics:kinematicEnabled = 0
|
| 17 |
+
bool physics:rigidBodyEnabled = 1
|
| 18 |
+
quatf xformOp:orient = (1.0, 0.0, 0.0, 0.0)
|
| 19 |
+
float3 xformOp:scale = (0.08, 0.08, 0.08)
|
| 20 |
+
double3 xformOp:translate = (0.45, 0.0, 0.05)
|
| 21 |
+
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 22 |
+
|
| 23 |
+
over "geometry"
|
| 24 |
+
{
|
| 25 |
+
over "mesh" (
|
| 26 |
+
prepend apiSchemas = ["PhysicsCollisionAPI", "PhysxCollisionAPI", "PhysxConvexHullCollisionAPI", "PhysicsMeshCollisionAPI", "PhysxConvexDecompositionCollisionAPI"]
|
| 27 |
+
)
|
| 28 |
+
{
|
| 29 |
+
uniform token physics:approximation = "convexDecomposition"
|
| 30 |
+
bool physics:collisionEnabled = 1
|
| 31 |
+
}
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
over "env_light" (
|
| 35 |
+
active = false
|
| 36 |
+
)
|
| 37 |
+
{
|
| 38 |
+
}
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
# SeattleLabTable: 替代 board_0,共享 playing_cards_kitchen 的资产 (~10.5 MB)
|
| 42 |
+
# Transform 与 PolarisPlacementEnvCfg.table 一致: pos=(0.5,0,0), quat wxyz=(0.707,0,0,0.707)
|
| 43 |
+
def Xform "seattle_lab_table" (
|
| 44 |
+
active = true
|
| 45 |
+
prepend references = @../playing_cards_kitchen/assets/seattle_lab_table/table_instanceable.usd@
|
| 46 |
+
)
|
| 47 |
+
{
|
| 48 |
+
quatf xformOp:orient = (0.707, 0.0, 0.0, 0.707)
|
| 49 |
+
float3 xformOp:scale = (1, 1, 1)
|
| 50 |
+
double3 xformOp:translate = (0.5, 0.0, 0.0)
|
| 51 |
+
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 52 |
+
}
|
| 53 |
+
|
| 54 |
+
def Camera "external_cam" (
|
| 55 |
+
active = true
|
| 56 |
+
kind = "model"
|
| 57 |
+
)
|
| 58 |
+
{
|
| 59 |
+
float2 clippingRange = (0.01, 10000000)
|
| 60 |
+
float focalLength = 1.0476
|
| 61 |
+
float focusDistance = 400
|
| 62 |
+
float horizontalAperture = 2.5452
|
| 63 |
+
float verticalAperture = 1.4721
|
| 64 |
+
quatd xformOp:orient = (0.681814, 0.169845, 0.171992, 0.690435)
|
| 65 |
+
double3 xformOp:scale = (1, 1, 1)
|
| 66 |
+
double3 xformOp:translate = (0.7, 0.0, 0.33)
|
| 67 |
+
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 68 |
+
}
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
def Xform "Environment"
|
| 72 |
+
{
|
| 73 |
+
def DistantLight "defaultLight" (
|
| 74 |
+
prepend apiSchemas = ["ShapingAPI"]
|
| 75 |
+
)
|
| 76 |
+
{
|
| 77 |
+
float inputs:angle = 1
|
| 78 |
+
float inputs:intensity = 3000
|
| 79 |
+
float inputs:shaping:cone:angle = 180
|
| 80 |
+
quatd xformOp:orient = (0.6532814824381883, 0.2705980500730985, 0.27059805007309845, 0.6532814824381882)
|
| 81 |
+
double3 xformOp:scale = (1, 1, 1)
|
| 82 |
+
double3 xformOp:translate = (0, 0, 0)
|
| 83 |
+
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 84 |
+
}
|
| 85 |
+
}
|
playing_cards_kitchen/assets/seattle_lab_table/table.usd
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb8988eb83dd1fd5ee63877b6a60b74d80952940568c005989de1afe20fa3e1d
|
| 3 |
+
size 10536613
|
playing_cards_kitchen/assets/seattle_lab_table/table_instanceable.usd
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:479ed8fd374d8eafdedf3ca3b9d0d5981ffc6d5c5016929347f748be93d5df17
|
| 3 |
+
size 4584
|
playing_cards_kitchen/scene.usda
CHANGED
|
@@ -1,5 +1,28 @@
|
|
| 1 |
#usda 1.0
|
| 2 |
(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
defaultPrim = "World"
|
| 4 |
metersPerUnit = 1
|
| 5 |
upAxis = "Z"
|
|
@@ -24,29 +47,6 @@ def "Looks"
|
|
| 24 |
|
| 25 |
def Xform "World"
|
| 26 |
{
|
| 27 |
-
def "g60_kitchen_table_zed" (
|
| 28 |
-
active = true
|
| 29 |
-
prepend payload = @./assets/g60_kitchen_table_zed/mesh.usdz@
|
| 30 |
-
)
|
| 31 |
-
{
|
| 32 |
-
bool physics:kinematicEnabled = 1
|
| 33 |
-
quatd xformOp:orient = (0.0069501640146002975, 0.0000020098868016692203, -0.0002891785243121244, -0.9999758055032691)
|
| 34 |
-
double3 xformOp:scale = (1, 1, 1)
|
| 35 |
-
double3 xformOp:translate = (-0.23996217709738163, -0.23876804994724557, 0)
|
| 36 |
-
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 37 |
-
|
| 38 |
-
over "geometry"
|
| 39 |
-
{
|
| 40 |
-
over "mesh" (
|
| 41 |
-
prepend apiSchemas = ["PhysxConvexDecompositionCollisionAPI", "PhysxTriangleMeshSimplificationCollisionAPI"]
|
| 42 |
-
)
|
| 43 |
-
{
|
| 44 |
-
uniform token physics:approximation = "meshSimplification"
|
| 45 |
-
}
|
| 46 |
-
}
|
| 47 |
-
}
|
| 48 |
-
|
| 49 |
-
# Playing cards variant 0 (left position)
|
| 50 |
def "playing_cards_0" (
|
| 51 |
active = true
|
| 52 |
prepend apiSchemas = ["PhysicsRigidBodyAPI", "PhysxRigidBodyAPI"]
|
|
@@ -55,9 +55,9 @@ def Xform "World"
|
|
| 55 |
{
|
| 56 |
bool physics:kinematicEnabled = 0
|
| 57 |
bool physics:rigidBodyEnabled = 1
|
| 58 |
-
quatf xformOp:orient = (0.
|
| 59 |
-
float3 xformOp:scale = (0.
|
| 60 |
-
double3 xformOp:translate = (0.
|
| 61 |
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 62 |
|
| 63 |
over "geometry"
|
|
@@ -78,7 +78,6 @@ def Xform "World"
|
|
| 78 |
}
|
| 79 |
}
|
| 80 |
|
| 81 |
-
# Playing cards variant 1 (center position) - DISABLED
|
| 82 |
def "playing_cards_1" (
|
| 83 |
active = false
|
| 84 |
prepend apiSchemas = ["PhysicsRigidBodyAPI", "PhysxRigidBodyAPI"]
|
|
@@ -89,7 +88,7 @@ def Xform "World"
|
|
| 89 |
bool physics:rigidBodyEnabled = 1
|
| 90 |
quatf xformOp:orient = (0.706838, 0.706534, -0.028451, -0.019497)
|
| 91 |
float3 xformOp:scale = (0.05, 0.05, 0.05)
|
| 92 |
-
double3 xformOp:translate = (0.
|
| 93 |
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 94 |
|
| 95 |
over "geometry"
|
|
@@ -110,23 +109,17 @@ def Xform "World"
|
|
| 110 |
}
|
| 111 |
}
|
| 112 |
|
| 113 |
-
# Target marker (visual only - no collision, transparent green, fixed in place)
|
| 114 |
-
# Default: inactive. Enable via show_target_marker=True in environment
|
| 115 |
def "target_marker" (
|
| 116 |
active = false
|
| 117 |
prepend apiSchemas = ["MaterialBindingAPI"]
|
| 118 |
prepend payload = @./assets/playing_cards_0/mesh.usd@
|
| 119 |
)
|
| 120 |
{
|
| 121 |
-
# Bind transparent green material
|
| 122 |
rel material:binding = </Looks/TransparentGreen>
|
| 123 |
-
|
| 124 |
-
# Fixed in place (kinematic) - won't fall or move
|
| 125 |
bool physics:kinematicEnabled = 1
|
| 126 |
-
|
| 127 |
-
quatf xformOp:orient = (0.003043, 0.009320, -0.704666, 0.709472)
|
| 128 |
float3 xformOp:scale = (0.05, 0.05, 0.05)
|
| 129 |
-
double3 xformOp:translate = (0.
|
| 130 |
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 131 |
|
| 132 |
over "geometry"
|
|
@@ -135,10 +128,8 @@ def Xform "World"
|
|
| 135 |
prepend apiSchemas = ["MaterialBindingAPI"]
|
| 136 |
)
|
| 137 |
{
|
| 138 |
-
# No collision - visual only
|
| 139 |
-
bool physics:collisionEnabled = 0
|
| 140 |
-
# Bind transparent material to mesh
|
| 141 |
rel material:binding = </Looks/TransparentGreen>
|
|
|
|
| 142 |
}
|
| 143 |
}
|
| 144 |
|
|
@@ -149,16 +140,26 @@ def Xform "World"
|
|
| 149 |
}
|
| 150 |
}
|
| 151 |
|
| 152 |
-
|
| 153 |
-
def "board_0" (
|
| 154 |
active = true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 155 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 156 |
)
|
| 157 |
{
|
| 158 |
bool physics:kinematicEnabled = 1
|
| 159 |
-
quatf xformOp:orient = (0.
|
| 160 |
float3 xformOp:scale = (0.4, 0.2, 0.8)
|
| 161 |
-
double3 xformOp:translate = (0.
|
| 162 |
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 163 |
|
| 164 |
over "geometry"
|
|
@@ -189,11 +190,22 @@ def Xform "World"
|
|
| 189 |
float focusDistance = 400
|
| 190 |
float horizontalAperture = 2.5452
|
| 191 |
float verticalAperture = 1.4721
|
| 192 |
-
quatd xformOp:orient = (
|
| 193 |
double3 xformOp:scale = (1, 1, 1)
|
| 194 |
-
double3 xformOp:translate = (0.
|
| 195 |
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 196 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 197 |
}
|
| 198 |
|
| 199 |
def Xform "Environment"
|
|
@@ -211,3 +223,109 @@ def Xform "Environment"
|
|
| 211 |
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 212 |
}
|
| 213 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
#usda 1.0
|
| 2 |
(
|
| 3 |
+
customLayerData = {
|
| 4 |
+
dictionary cameraSettings = {
|
| 5 |
+
dictionary Front = {
|
| 6 |
+
double3 position = (5, 0, 0)
|
| 7 |
+
double radius = 5
|
| 8 |
+
}
|
| 9 |
+
dictionary Perspective = {
|
| 10 |
+
double3 position = (1.3347837750269578, 0.049335736480674755, 1.0634490468792681)
|
| 11 |
+
double3 target = (-3.554269148828407, -0.08835163411780082, -6.083452638167127)
|
| 12 |
+
}
|
| 13 |
+
dictionary Right = {
|
| 14 |
+
double3 position = (0, -5, 0)
|
| 15 |
+
double radius = 5
|
| 16 |
+
}
|
| 17 |
+
dictionary Top = {
|
| 18 |
+
double3 position = (0, 0, 5)
|
| 19 |
+
double radius = 5
|
| 20 |
+
}
|
| 21 |
+
string boundCamera = "/OmniverseKit_Persp"
|
| 22 |
+
}
|
| 23 |
+
dictionary renderSettings = {
|
| 24 |
+
}
|
| 25 |
+
}
|
| 26 |
defaultPrim = "World"
|
| 27 |
metersPerUnit = 1
|
| 28 |
upAxis = "Z"
|
|
|
|
| 47 |
|
| 48 |
def Xform "World"
|
| 49 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
def "playing_cards_0" (
|
| 51 |
active = true
|
| 52 |
prepend apiSchemas = ["PhysicsRigidBodyAPI", "PhysxRigidBodyAPI"]
|
|
|
|
| 55 |
{
|
| 56 |
bool physics:kinematicEnabled = 0
|
| 57 |
bool physics:rigidBodyEnabled = 1
|
| 58 |
+
quatf xformOp:orient = (0.7093, 0.70466, -0.009604, 0.016003)
|
| 59 |
+
float3 xformOp:scale = (0.04, 0.05, 0.04)
|
| 60 |
+
double3 xformOp:translate = (0.579195, -0.130681, 0.02)
|
| 61 |
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 62 |
|
| 63 |
over "geometry"
|
|
|
|
| 78 |
}
|
| 79 |
}
|
| 80 |
|
|
|
|
| 81 |
def "playing_cards_1" (
|
| 82 |
active = false
|
| 83 |
prepend apiSchemas = ["PhysicsRigidBodyAPI", "PhysxRigidBodyAPI"]
|
|
|
|
| 88 |
bool physics:rigidBodyEnabled = 1
|
| 89 |
quatf xformOp:orient = (0.706838, 0.706534, -0.028451, -0.019497)
|
| 90 |
float3 xformOp:scale = (0.05, 0.05, 0.05)
|
| 91 |
+
double3 xformOp:translate = (0.386472, -0.085173, 0.102847)
|
| 92 |
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 93 |
|
| 94 |
over "geometry"
|
|
|
|
| 109 |
}
|
| 110 |
}
|
| 111 |
|
|
|
|
|
|
|
| 112 |
def "target_marker" (
|
| 113 |
active = false
|
| 114 |
prepend apiSchemas = ["MaterialBindingAPI"]
|
| 115 |
prepend payload = @./assets/playing_cards_0/mesh.usd@
|
| 116 |
)
|
| 117 |
{
|
|
|
|
| 118 |
rel material:binding = </Looks/TransparentGreen>
|
|
|
|
|
|
|
| 119 |
bool physics:kinematicEnabled = 1
|
| 120 |
+
quatf xformOp:orient = (0.003043, 0.00932, -0.704666, 0.709472)
|
|
|
|
| 121 |
float3 xformOp:scale = (0.05, 0.05, 0.05)
|
| 122 |
+
double3 xformOp:translate = (0.579195, 0.112946, 0.02)
|
| 123 |
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 124 |
|
| 125 |
over "geometry"
|
|
|
|
| 128 |
prepend apiSchemas = ["MaterialBindingAPI"]
|
| 129 |
)
|
| 130 |
{
|
|
|
|
|
|
|
|
|
|
| 131 |
rel material:binding = </Looks/TransparentGreen>
|
| 132 |
+
bool physics:collisionEnabled = 0
|
| 133 |
}
|
| 134 |
}
|
| 135 |
|
|
|
|
| 140 |
}
|
| 141 |
}
|
| 142 |
|
| 143 |
+
def Xform "seattle_lab_table" (
|
|
|
|
| 144 |
active = true
|
| 145 |
+
prepend references = @./assets/seattle_lab_table/table_instanceable.usd@
|
| 146 |
+
)
|
| 147 |
+
{
|
| 148 |
+
quatf xformOp:orient = (0.707, 0, 0, 0.707)
|
| 149 |
+
float3 xformOp:scale = (1, 1, 1)
|
| 150 |
+
double3 xformOp:translate = (0.5, 0, 0)
|
| 151 |
+
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 152 |
+
}
|
| 153 |
+
|
| 154 |
+
def "board_0" (
|
| 155 |
+
active = false
|
| 156 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 157 |
)
|
| 158 |
{
|
| 159 |
bool physics:kinematicEnabled = 1
|
| 160 |
+
quatf xformOp:orient = (0.7071, 0.7071, 0, 0)
|
| 161 |
float3 xformOp:scale = (0.4, 0.2, 0.8)
|
| 162 |
+
double3 xformOp:translate = (0.4677, 0, -0.025)
|
| 163 |
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 164 |
|
| 165 |
over "geometry"
|
|
|
|
| 190 |
float focusDistance = 400
|
| 191 |
float horizontalAperture = 2.5452
|
| 192 |
float verticalAperture = 1.4721
|
| 193 |
+
quatd xformOp:orient = (0.681814, 0.169845, 0.171992, 0.690435)
|
| 194 |
double3 xformOp:scale = (1, 1, 1)
|
| 195 |
+
double3 xformOp:translate = (0.7, 0.0, 0.33)
|
| 196 |
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 197 |
}
|
| 198 |
+
|
| 199 |
+
def Camera "_preview_cam"
|
| 200 |
+
{
|
| 201 |
+
float2 clippingRange = (0.01, 10000)
|
| 202 |
+
float focalLength = 1.0476
|
| 203 |
+
float horizontalAperture = 2.5452
|
| 204 |
+
float verticalAperture = 1.4721
|
| 205 |
+
quatf xformOp:orient = (0.66593355, 0.20605068, 0.21193525, 0.68495184)
|
| 206 |
+
double3 xformOp:translate = (1.3347837750269578, 0.049335736480674755, 1.0634490468792681)
|
| 207 |
+
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient"]
|
| 208 |
+
}
|
| 209 |
}
|
| 210 |
|
| 211 |
def Xform "Environment"
|
|
|
|
| 223 |
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 224 |
}
|
| 225 |
}
|
| 226 |
+
|
| 227 |
+
def "Render" (
|
| 228 |
+
hide_in_stage_window = true
|
| 229 |
+
no_delete = true
|
| 230 |
+
)
|
| 231 |
+
{
|
| 232 |
+
def "OmniverseKit"
|
| 233 |
+
{
|
| 234 |
+
def "HydraTextures" (
|
| 235 |
+
hide_in_stage_window = true
|
| 236 |
+
no_delete = true
|
| 237 |
+
)
|
| 238 |
+
{
|
| 239 |
+
def RenderProduct "omni_kit_widget_viewport_ViewportTexture_0" (
|
| 240 |
+
prepend apiSchemas = ["OmniRtxSettingsCommonAdvancedAPI_1", "OmniRtxSettingsRtAdvancedAPI_1", "OmniRtxSettingsPtAdvancedAPI_1", "OmniRtxPostColorGradingAPI_1", "OmniRtxPostChromaticAberrationAPI_1", "OmniRtxPostBloomPhysicalAPI_1", "OmniRtxPostMatteObjectAPI_1", "OmniRtxPostCompositingAPI_1", "OmniRtxPostDofAPI_1", "OmniRtxPostMotionBlurAPI_1", "OmniRtxPostTvNoiseAPI_1", "OmniRtxPostTonemapIrayReinhardAPI_1", "OmniRtxPostDebugSettingsAPI_1", "OmniRtxDebugSettingsAPI_1"]
|
| 241 |
+
hide_in_stage_window = true
|
| 242 |
+
no_delete = true
|
| 243 |
+
)
|
| 244 |
+
{
|
| 245 |
+
rel camera = </OmniverseKit_Persp>
|
| 246 |
+
token omni:rtx:background:source:texture:textureMode = "repeatMirrored"
|
| 247 |
+
token omni:rtx:background:source:type = "domeLight"
|
| 248 |
+
bool omni:rtx:dlss:frameGeneration = 0
|
| 249 |
+
bool omni:rtx:material:db:nonVisualMaterialCSV:enabled = 0
|
| 250 |
+
bool omni:rtx:material:db:syncLoads = 1
|
| 251 |
+
token omni:rtx:post:dlss:execMode = "performance"
|
| 252 |
+
bool omni:rtx:post:registeredCompositing:invertColorCorrection = 1
|
| 253 |
+
bool omni:rtx:post:registeredCompositing:invertToneMap = 1
|
| 254 |
+
int omni:rtx:pt:clampSpp = 64
|
| 255 |
+
bool omni:rtx:pt:lightcache:cached:dontResolveConflicts = 1
|
| 256 |
+
int omni:rtx:pt:maxSamplesPerLaunch = 2073600
|
| 257 |
+
int omni:rtx:pt:maxVolumeBounces = 4
|
| 258 |
+
int omni:rtx:pt:mgpu:maxPixelsPerRegionExponent = 12
|
| 259 |
+
int omni:rtx:pt:samplesPerIteration = 64
|
| 260 |
+
int omni:rtx:pt:samplesPerPixel = 64
|
| 261 |
+
color3f omni:rtx:rt:ambientLight:color = (0.1, 0.1, 0.1)
|
| 262 |
+
bool omni:rtx:rt:demoire = 0
|
| 263 |
+
bool omni:rtx:rt:ecoMode:enabled
|
| 264 |
+
bool omni:rtx:rt:lightcache:spatialCache:dontResolveConflicts = 1
|
| 265 |
+
bool omni:rtx:scene:hydra:materialSyncLoads = 1
|
| 266 |
+
bool omni:rtx:scene:hydra:mdlMaterialWarmup = 1
|
| 267 |
+
uint omni:rtx:viewTile:limit = 4294967295
|
| 268 |
+
rel orderedVars = </Render/Vars/LdrColor>
|
| 269 |
+
custom bool overrideClipRange = 0
|
| 270 |
+
uniform int2 resolution = (1280, 720)
|
| 271 |
+
}
|
| 272 |
+
|
| 273 |
+
def RenderProduct "Replicator" (
|
| 274 |
+
prepend apiSchemas = ["OmniRtxSettingsCommonAdvancedAPI_1", "OmniRtxSettingsRtAdvancedAPI_1", "OmniRtxSettingsPtAdvancedAPI_1", "OmniRtxPostColorGradingAPI_1", "OmniRtxPostChromaticAberrationAPI_1", "OmniRtxPostBloomPhysicalAPI_1", "OmniRtxPostMatteObjectAPI_1", "OmniRtxPostCompositingAPI_1", "OmniRtxPostDofAPI_1", "OmniRtxPostMotionBlurAPI_1", "OmniRtxPostTvNoiseAPI_1", "OmniRtxPostTonemapIrayReinhardAPI_1", "OmniRtxPostDebugSettingsAPI_1", "OmniRtxDebugSettingsAPI_1"]
|
| 275 |
+
hide_in_stage_window = true
|
| 276 |
+
no_delete = true
|
| 277 |
+
)
|
| 278 |
+
{
|
| 279 |
+
rel camera = </World/_preview_cam>
|
| 280 |
+
token omni:rtx:background:source:texture:textureMode = "repeatMirrored"
|
| 281 |
+
token omni:rtx:background:source:type = "domeLight"
|
| 282 |
+
bool omni:rtx:dlss:frameGeneration = 0
|
| 283 |
+
bool omni:rtx:material:db:nonVisualMaterialCSV:enabled = 0
|
| 284 |
+
bool omni:rtx:material:db:syncLoads = 1
|
| 285 |
+
token omni:rtx:post:dlss:execMode = "performance"
|
| 286 |
+
bool omni:rtx:post:registeredCompositing:invertColorCorrection = 1
|
| 287 |
+
bool omni:rtx:post:registeredCompositing:invertToneMap = 1
|
| 288 |
+
int omni:rtx:pt:clampSpp = 64
|
| 289 |
+
bool omni:rtx:pt:lightcache:cached:dontResolveConflicts = 1
|
| 290 |
+
int omni:rtx:pt:maxSamplesPerLaunch = 2073600
|
| 291 |
+
int omni:rtx:pt:maxVolumeBounces = 4
|
| 292 |
+
int omni:rtx:pt:mgpu:maxPixelsPerRegionExponent = 12
|
| 293 |
+
int omni:rtx:pt:samplesPerIteration = 64
|
| 294 |
+
int omni:rtx:pt:samplesPerPixel = 64
|
| 295 |
+
color3f omni:rtx:rt:ambientLight:color = (0.1, 0.1, 0.1)
|
| 296 |
+
bool omni:rtx:rt:demoire = 0
|
| 297 |
+
bool omni:rtx:rt:ecoMode:enabled
|
| 298 |
+
bool omni:rtx:rt:lightcache:spatialCache:dontResolveConflicts = 1
|
| 299 |
+
bool omni:rtx:scene:hydra:materialSyncLoads = 1
|
| 300 |
+
bool omni:rtx:scene:hydra:mdlMaterialWarmup = 1
|
| 301 |
+
uint omni:rtx:viewTile:limit = 4294967295
|
| 302 |
+
rel orderedVars = </Render/Vars/LdrColor>
|
| 303 |
+
custom bool overrideClipRange = 0
|
| 304 |
+
uniform int2 resolution = (320, 180)
|
| 305 |
+
}
|
| 306 |
+
}
|
| 307 |
+
}
|
| 308 |
+
|
| 309 |
+
def RenderSettings "OmniverseGlobalRenderSettings" (
|
| 310 |
+
prepend apiSchemas = ["OmniRtxSettingsGlobalRtAdvancedAPI_1", "OmniRtxSettingsGlobalPtAdvancedAPI_1"]
|
| 311 |
+
no_delete = true
|
| 312 |
+
)
|
| 313 |
+
{
|
| 314 |
+
rel products = [
|
| 315 |
+
</Render/OmniverseKit/HydraTextures/omni_kit_widget_viewport_ViewportTexture_0>,
|
| 316 |
+
</Render/OmniverseKit/HydraTextures/Replicator>,
|
| 317 |
+
]
|
| 318 |
+
}
|
| 319 |
+
|
| 320 |
+
def "Vars"
|
| 321 |
+
{
|
| 322 |
+
def RenderVar "LdrColor" (
|
| 323 |
+
hide_in_stage_window = true
|
| 324 |
+
no_delete = true
|
| 325 |
+
)
|
| 326 |
+
{
|
| 327 |
+
uniform string sourceName = "LdrColor"
|
| 328 |
+
}
|
| 329 |
+
}
|
| 330 |
+
}
|
| 331 |
+
|
shoekitchen/scene.usda
CHANGED
|
@@ -56,9 +56,25 @@ def Xform "World"
|
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
-
#
|
| 60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
active = true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 63 |
)
|
| 64 |
{
|
|
|
|
| 56 |
}
|
| 57 |
}
|
| 58 |
|
| 59 |
+
# SeattleLabTable: replaces board_0 (board_0 has broken collision due to
|
| 60 |
+
# convex-decomposition + non-uniform scaling in the original mesh).
|
| 61 |
+
# Transform mirrors PolarisPlacementEnvCfg.table:
|
| 62 |
+
# pos = (0.5, 0, 0), rot wxyz = (0.707, 0, 0, 0.707)
|
| 63 |
+
# Reference shared assets from playing_cards_kitchen/ to avoid duplication.
|
| 64 |
+
def Xform "seattle_lab_table" (
|
| 65 |
active = true
|
| 66 |
+
prepend references = @../playing_cards_kitchen/assets/seattle_lab_table/table_instanceable.usd@
|
| 67 |
+
)
|
| 68 |
+
{
|
| 69 |
+
quatf xformOp:orient = (0.707, 0.0, 0.0, 0.707)
|
| 70 |
+
float3 xformOp:scale = (1, 1, 1)
|
| 71 |
+
double3 xformOp:translate = (0.5, 0.0, 0.0)
|
| 72 |
+
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"]
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
# Board object - DISABLED (broken collision; replaced by SeattleLabTable above)
|
| 76 |
+
def "board_0" (
|
| 77 |
+
active = false
|
| 78 |
prepend payload = @./assets/board_0/mesh.usd@
|
| 79 |
)
|
| 80 |
{
|