-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathKraken.usda
39 lines (34 loc) · 972 Bytes
/
Kraken.usda
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#usda 1.0
(
defaultPrim = "Geometry"
doc = "Kraken v1.1.0 | 11-30-2024 23:59:43"
)
def Xform "Geometry"
{
float3 xformOp:scale = (5, 5, 5)
double3 xformOp:translate = (0, 5, 0)
uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:scale"]
def Sphere "Sphere" (
prepend apiSchemas = ["MaterialBindingAPI"]
)
{
rel material:binding = </Materials/RedMaterial>
double3 xformOp:translate = (0, 0, -5)
uniform token[] xformOpOrder = ["xformOp:translate"]
}
}
def "Materials"
{
def Material "RedMaterial"
{
token outputs:surface.connect = </Materials/RedMaterial/PBRShader.outputs:surface>
def Shader "PBRShader"
{
uniform token info:id = "UsdPreviewSurface"
color3f inputs:diffuseColor = (0.992, 0.207, 0.061)
float inputs:metallic = 0
float inputs:roughness = 0.4
token outputs:surface
}
}
}