diff --git a/assets/shaders/deferred.frag b/assets/shaders/deferred.frag index 6772896..5f6b527 100644 --- a/assets/shaders/deferred.frag +++ b/assets/shaders/deferred.frag @@ -81,15 +81,12 @@ void main() vec3 ambient = vec3(0.2) * albedo; - vec3 color = ambient + Lo; + vec3 color = ambient + Lo; color += spec * specFactor; - // color = mix(color, spec, specFactor); - //color = color / (color + vec3(1.0)); - // float reflectance = max(max(F.x, F.y), F.z); - // float reflectance = max(max(F0.x, F0.y), F0.z); + // color = color / (color + vec3(1.0)); outColor = vec4(color, 1.0); - // outColor = vec4(vec3(reflectance), 1.0); + // outColor = vec4(spec * specFactor, 1.0); } diff --git a/assets/shaders/fxaa.frag b/assets/shaders/fxaa.frag index 6b2a934..a6b074b 100644 --- a/assets/shaders/fxaa.frag +++ b/assets/shaders/fxaa.frag @@ -63,7 +63,4 @@ void main() outColor = vec4(rgbA, 1.0); else outColor = vec4(rgbB, 1.0); - - if(uv.x < 0.5) - outColor = vec4(rgbM, 1.0); } diff --git a/assets/shaders/mrt.frag b/assets/shaders/mrt.frag index 9d83e7d..c41614d 100755 --- a/assets/shaders/mrt.frag +++ b/assets/shaders/mrt.frag @@ -4,17 +4,7 @@ #include "shaders://_builtins/constants.glsl" #include "shaders://_builtins/srgb_ops.glsl" #include "shaders://_builtins/PBR.glsl" - -struct Material { - vec4 baseColor; - uint albedoTexture; - - uint normalTexture; - - float metallicFactor; - float roughnessFactor; - uint metallicRoughnessTexture; -}; +#include "shaders://_builtins/types.glsl" struct Light { vec3 color; @@ -86,30 +76,34 @@ void main() { if(material.metallicRoughnessTexture == 0) { outSpecular.b = material.metallicFactor; outSpecular.g = material.roughnessFactor; - outSpecular.r = 1; + outSpecular.r = 1.0; } else { outSpecular = LinearToSRGB(texture(texSampler[material.metallicRoughnessTexture], uv)).xyz; - - float metallicFactor = outSpecular.z; - float roughnessFactor = outSpecular.y; - // vec3 F0 = mix(vec3(0.04), outColor, (metallicFactor - roughnessFactor)); - // float reflectance = max(max(F0.x, F0.y), F0.z); - // float reflectance = (metallicFactor + roughnessFactor) * 0.5; - float reflectance = 1.0 - roughnessFactor; - - gNormal.w = outSpecular.x; - gAlbedo.w = roughnessFactor; - gPosition.w = metallicFactor; - gSpecular.w = reflectance; } + float metallicFactor = outSpecular.z; + float roughnessFactor = outSpecular.y; + float ao = outSpecular.x; + + gNormal.w = ao; + gAlbedo.w = roughnessFactor; + gPosition.w = metallicFactor; + + float reflectance = 1.0 - roughnessFactor; + gSpecular.w = reflectance; + vec3 I = normalize(outpos.xyz - cameraPos); vec3 R = reflect(I, normalize(outNormal)); //R = R * -1; outSpecular = texture(skybox, R).rgb; + if(material.emissiveTexture != 0) { + gSpecular.w = 1.0; + outSpecular += texture(texSampler[material.emissiveTexture], uv).rgb * material.emissiveFactor.xyz; + } - gPosition = outpos; + + gPosition.xyz = outpos.xyz; gNormal.xyz = outNormal; gAlbedo.xyz = outColor; gSpecular.xyz = outSpecular; diff --git a/game.proj b/game.proj index 2b38f86..33b1e84 100755 --- a/game.proj +++ b/game.proj @@ -49,5 +49,5 @@ "path": "scenes://Car.evsc" } ], - "activeScene": "Car" + "activeScene": "DamagedHelmetScene" } diff --git a/scenes/Car.evsc b/scenes/Car.evsc index af258d5..e77355d 100644 --- a/scenes/Car.evsc +++ b/scenes/Car.evsc @@ -1,126 +1,3206 @@ -{"id":"Scene","materials":[{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"301","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"albedoTexture":"assets://textures/1619527306843.tx","baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"202","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"293","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.3328622877597809,0.3328622877597809,0.3328622877597809,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"292","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.40909093618392944},{"albedoTexture":"assets://textures/3_088_BaseColor.tx","baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"291","metallicFactor":0.8500000238418579,"metallicRoughnessTexture":"assets://textures/3_OcclusionRoughnessMetallic.tx","normalTexture":"assets://textures/3_088_Normal.tx","pipeline":"DefferedPipeline","roughnessFactor":1.0},{"baseColor":[0.4582723379135132,0.4582723379135132,0.4582723379135132,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"289","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.25},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"288","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.4582723379135132,0.4582723379135132,0.4582723379135132,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"272","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.25},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"286","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.23218044638633728,0.293610543012619,0.2387901395559311,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"002","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"287","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.10454545170068741},{"baseColor":[0.4264627993106842,0.4264627993106842,0.4264627993106842,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"267","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.30000001192092896},{"baseColor":[0.3328622877597809,0.3328622877597809,0.3328622877597809,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"266","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.40909093618392944},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"260","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"238","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"221","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"220","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"005","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"1","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"014","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"013","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"マテリアル.015","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"マテリアル.011","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"259","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"019","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.30000001192092896},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"020","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.30000001192092896},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"018","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"albedoTexture":"assets://textures/amg_gt7_BaseColor.tx","baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"017","metallicFactor":1.0,"metallicRoughnessTexture":"assets://textures/amg_gt7_OcclusionRoughnessMetallic.tx","normalTexture":"assets://textures/amg_gt7_Normal.tx","pipeline":"DefferedPipeline","roughnessFactor":1.0},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"254","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"253","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"258","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.050000011920928955},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"257","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.050000011920928955},{"baseColor":[0.0607406422495842,0.0607406422495842,0.0607406422495842,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"256","metallicFactor":0.5090909004211426,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"255","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"249","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":1.0},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"245","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"244","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"243","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"242","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.8000000715255737,0.34420815110206604,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"300","metallicFactor":0.6318181753158569,"pipeline":"DefferedPipeline","roughnessFactor":0.34545454382896423},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"240","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"237","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.3499999940395355},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"236","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"039","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.104545459151268},{"baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"040","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":1.0},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"261","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"234","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.31516581773757935,0.31516581773757935,0.31516581773757935,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"233","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.2545454502105713},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"232","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"248","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"247","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"246","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"191","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"016","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"albedoTexture":"assets://textures/amg_caliper.tx","baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"213","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.30000001192092896},{"albedoTexture":"assets://textures/amg_caliper_p.tx","baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"265","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.30000001192092896},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"274","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"275","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.20000000298023224},{"albedoTexture":"assets://textures/amg_gt2_BaseColor.tx","baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"212","metallicFactor":1.0,"metallicRoughnessTexture":"assets://textures/amg_gt2_OcclusionRoughnessMetallic.tx","pipeline":"DefferedPipeline","roughnessFactor":1.0},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"203","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":1.0},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"201","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[1.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"192","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"albedoTexture":"assets://textures/amg_rearcaliper.tx","baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"200","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.30000001192092896},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"199","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"albedoTexture":"assets://textures/amg_caliper_p.tx","baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"194","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.30000001192092896},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"188","metallicFactor":0.4227272868156433,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"009","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":1.0},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"008","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.20000000298023224},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"007","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"004","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"003","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"190","metallicFactor":0.25,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.728867769241333,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"189","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"012","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"021","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":1.0},{"baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"022","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":1.0},{"albedoTexture":"assets://textures/mirror.tx","baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"023","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.2181818187236786},{"baseColor":[0.8000000715255737,0.34420815110206604,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"030","metallicFactor":0.6318181753158569,"pipeline":"DefferedPipeline","roughnessFactor":0.34545454382896423},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"024","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"027","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.0},{"baseColor":[0.8000000715255737,0.34420815110206604,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"029","metallicFactor":0.6318181753158569,"pipeline":"DefferedPipeline","roughnessFactor":0.34545454382896423},{"albedoTexture":"assets://textures/benz.tx","baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"031","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.3499999940395355},{"baseColor":[0.800000011920929,0.800000011920929,0.800000011920929,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"32","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.08181819319725037},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"33","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"albedoTexture":"assets://textures/Tyre.tx","baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"25","metallicFactor":1.0,"normalTexture":"assets://textures/Tyre_Base_NM.tx","pipeline":"DefferedPipeline","roughnessFactor":0.477609783411026},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"041","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.699999988079071},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"045","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"025","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"047","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.800000011920929},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"046","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.800000011920929},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"048","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.800000011920929},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"049","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.800000011920929},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"038","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"042","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"043","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"044","metallicFactor":0.0,"pipeline":"DefferedPipeline","roughnessFactor":0.5},{"baseColor":[0.0,0.0,0.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"051","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":1.0},{"baseColor":[0.5098705291748047,0.5098705291748047,0.5098705291748047,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"010","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":0.3454545736312866},{"baseColor":[1.0,1.0,1.0,1.0],"emissiveFactor":[1.0,1.0,1.0],"id":"Scene_Material_Dummy_98","metallicFactor":1.0,"pipeline":"DefferedPipeline","roughnessFactor":1.0}],"nodes":[{"children":[{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"202","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_Bolt.001-1.mesh","type":"RenderComponent"}],"id":"plate_R_Primitive_1"}],"components":[{"position":[1.5608412027359009,0.34845077991485596,0.0],"rotation":[0.0,-0.0,-89.999995674289],"scale":[0.031041301786899567,0.031041301786899567,0.031041301786899567],"type":"TransformComponent"},{"material":"301","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_Bolt.001-0.mesh","type":"RenderComponent"}],"id":"plate_R"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"293","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.014.mesh","type":"RenderComponent"}],"id":"AMG1"},{"components":[{"position":[0.6881826519966125,0.264426052570343,0.7605260610580444],"rotation":[0.0,-90.00000250447816,-0.0],"scale":[0.10732812434434891,0.10732810944318771,0.10732812434434891],"type":"TransformComponent"},{"material":"292","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.033.mesh","type":"RenderComponent"}],"id":"wheel_LR"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"291","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.034.mesh","type":"RenderComponent"}],"id":"brake_F"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"291","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.035.mesh","type":"RenderComponent"}],"id":"brake_R"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"288","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.015-1.mesh","type":"RenderComponent"}],"id":"emblem_Primitive_1"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"272","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.015-2.mesh","type":"RenderComponent"}],"id":"emblem_Primitive_2"}],"components":[{"position":[-2.074213743209839,0.0,0.0],"rotation":[0.0,-0.0,-89.999995674289],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"289","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.015-0.mesh","type":"RenderComponent"}],"id":"emblem"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"002","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.002-1.mesh","type":"RenderComponent"}],"id":"light_F_Primitive_1"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"287","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.002-2.mesh","type":"RenderComponent"}],"id":"light_F_Primitive_2"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"286","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.002-0.mesh","type":"RenderComponent"}],"id":"light_F"},{"components":[{"position":[-1.3753724098205566,0.2537996768951416,-0.7528399229049683],"rotation":[-90.02075261917668,89.98021544645263,90.02075261917668],"scale":[0.10554520785808563,0.10554520785808563,0.10554520040750504],"type":"TransformComponent"},{"material":"292","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.042.mesh","type":"RenderComponent"}],"id":"wheel_RF"},{"components":[{"position":[0.6881825923919678,0.26516544818878174,-0.7607076168060303],"rotation":[0.0,90.00000250447816,-180.00000500895632],"scale":[0.10732812434434891,0.1073281392455101,0.10732812434434891],"type":"TransformComponent"},{"material":"292","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.043.mesh","type":"RenderComponent"}],"id":"wheel_RR"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"289","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.003-1.mesh","type":"RenderComponent"}],"id":"wheel_cap_F_Primitive_1"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"266","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.003-2.mesh","type":"RenderComponent"}],"id":"wheel_cap_F_Primitive_2"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"272","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.003-3.mesh","type":"RenderComponent"}],"id":"wheel_cap_F_Primitive_3"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"267","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.003-0.mesh","type":"RenderComponent"}],"id":"wheel_cap_F"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"289","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.012-1.mesh","type":"RenderComponent"}],"id":"wheel_cap_R_Primitive_1"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"266","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.012-2.mesh","type":"RenderComponent"}],"id":"wheel_cap_R_Primitive_2"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"272","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.012-3.mesh","type":"RenderComponent"}],"id":"wheel_cap_R_Primitive_3"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"267","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.012-0.mesh","type":"RenderComponent"}],"id":"wheel_cap_R"},{"components":[{"position":[-1.375499963760376,0.2534693479537964,0.7526787519454956],"rotation":[0.0,-90.00000250447816,-0.0],"scale":[0.10554520040750504,0.10554518550634384,0.10554520040750504],"type":"TransformComponent"},{"material":"292","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.032.mesh","type":"RenderComponent"}],"id":"wheel_LF"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"238","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-1.mesh","type":"RenderComponent"}],"id":"mesh_Primitive_1"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"221","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-2.mesh","type":"RenderComponent"}],"id":"mesh_Primitive_2"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"220","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-3.mesh","type":"RenderComponent"}],"id":"mesh_Primitive_3"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"005","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-4.mesh","type":"RenderComponent"}],"id":"mesh_Primitive_4"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"1","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-5.mesh","type":"RenderComponent"}],"id":"mesh_Primitive_5"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"014","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-6.mesh","type":"RenderComponent"}],"id":"mesh_Primitive_6"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"013","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-7.mesh","type":"RenderComponent"}],"id":"mesh_Primitive_7"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"マテリアル.015","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-8.mesh","type":"RenderComponent"}],"id":"mesh_Primitive_8"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"マテリアル.011","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-9.mesh","type":"RenderComponent"}],"id":"mesh_Primitive_9"}],"components":[{"position":[-1.4013168811798096,0.18638882040977478,0.3837481439113617],"rotation":[-62.1615857872319,33.36328843497788,-124.59390661278475],"scale":[0.8023979067802429,0.6105046272277832,0.8023978471755981],"type":"TransformComponent"},{"material":"260","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-0.mesh","type":"RenderComponent"}],"id":"mesh"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"019","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-1.mesh","type":"RenderComponent"}],"id":"light1_Primitive_1"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"020","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-2.mesh","type":"RenderComponent"}],"id":"light1_Primitive_2"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"018","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-3.mesh","type":"RenderComponent"}],"id":"light1_Primitive_3"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"017","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-4.mesh","type":"RenderComponent"}],"id":"light1_Primitive_4"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"254","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-5.mesh","type":"RenderComponent"}],"id":"light1_Primitive_5"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"253","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-6.mesh","type":"RenderComponent"}],"id":"light1_Primitive_6"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"258","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-7.mesh","type":"RenderComponent"}],"id":"light1_Primitive_7"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"257","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-8.mesh","type":"RenderComponent"}],"id":"light1_Primitive_8"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"256","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-9.mesh","type":"RenderComponent"}],"id":"light1_Primitive_9"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"255","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-10.mesh","type":"RenderComponent"}],"id":"light1_Primitive_10"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"259","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-0.mesh","type":"RenderComponent"}],"id":"light1"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"249","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.015.mesh","type":"RenderComponent"}],"id":"light_clear_F"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"245","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.045.mesh","type":"RenderComponent"}],"id":"window_R"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"244","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.031.mesh","type":"RenderComponent"}],"id":"windowframe_S"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"243","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.088.mesh","type":"RenderComponent"}],"id":"light_R"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"242","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.020.mesh","type":"RenderComponent"}],"id":"spoiler"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.021.mesh","type":"RenderComponent"}],"id":"body"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"240","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.044.mesh","type":"RenderComponent"}],"id":"window_F"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"237","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.025.mesh","type":"RenderComponent"}],"id":"spoiler2"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"039","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.026-1.mesh","type":"RenderComponent"}],"id":"diffuser_Primitive_1"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"040","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.026-2.mesh","type":"RenderComponent"}],"id":"diffuser_Primitive_2"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"236","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.026-0.mesh","type":"RenderComponent"}],"id":"diffuser"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"234","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.032-1.mesh","type":"RenderComponent"}],"id":"window_S_Primitive_1"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"261","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.032-0.mesh","type":"RenderComponent"}],"id":"window_S"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"232","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.034-1.mesh","type":"RenderComponent"}],"id":"exhaust_Primitive_1"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"233","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.034-0.mesh","type":"RenderComponent"}],"id":"exhaust"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"247","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.042-1.mesh","type":"RenderComponent"}],"id":"chassis _Primitive_1"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"246","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.042-2.mesh","type":"RenderComponent"}],"id":"chassis _Primitive_2"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"191","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.042-3.mesh","type":"RenderComponent"}],"id":"chassis _Primitive_3"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"016","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.042-4.mesh","type":"RenderComponent"}],"id":"chassis _Primitive_4"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"248","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.042-0.mesh","type":"RenderComponent"}],"id":"chassis "},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"265","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.019-1.mesh","type":"RenderComponent"}],"id":"caliper_F_Primitive_1"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"274","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.019-2.mesh","type":"RenderComponent"}],"id":"caliper_F_Primitive_2"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"275","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.019-3.mesh","type":"RenderComponent"}],"id":"caliper_F_Primitive_3"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"213","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.019-0.mesh","type":"RenderComponent"}],"id":"caliper_F"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"212","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.072.mesh","type":"RenderComponent"}],"id":"roof"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"203","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.087.mesh","type":"RenderComponent"}],"id":"windowframe_R"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"192","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.099-1.mesh","type":"RenderComponent"}],"id":"light_R2_Primitive_1"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"201","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.099-0.mesh","type":"RenderComponent"}],"id":"light_R2"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"199","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.093-1.mesh","type":"RenderComponent"}],"id":"caliper_R_Primitive_1"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"194","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.093-2.mesh","type":"RenderComponent"}],"id":"caliper_R_Primitive_2"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"200","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.093-0.mesh","type":"RenderComponent"}],"id":"caliper_R"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"188","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.095.mesh","type":"RenderComponent"}],"id":"LED_R"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"008","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.118-1.mesh","type":"RenderComponent"}],"id":"light_clear_R_Primitive_1"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"009","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.118-0.mesh","type":"RenderComponent"}],"id":"light_clear_R"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"007","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.101.mesh","type":"RenderComponent"}],"id":"LED_red"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"003","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.094-1.mesh","type":"RenderComponent"}],"id":"emblem_R_Primitive_1"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.1040908098220825,1.1040908098220825,1.1040908098220825],"type":"TransformComponent"},{"material":"004","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.094-0.mesh","type":"RenderComponent"}],"id":"emblem_R"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"189","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.107-1.mesh","type":"RenderComponent"}],"id":"light_red_R_Primitive_1"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"190","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.107-0.mesh","type":"RenderComponent"}],"id":"light_red_R"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"202","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_Bolt.002-1.mesh","type":"RenderComponent"}],"id":"plate_F_Primitive_1"}],"components":[{"position":[-2.18658185005188,0.22414933145046234,0.0],"rotation":[179.999991348578,-9.334667642611415e-06,-89.999995674289],"scale":[0.031041301786899567,0.031041301786899567,0.031041301786899567],"type":"TransformComponent"},{"material":"301","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_Bolt.002-0.mesh","type":"RenderComponent"}],"id":"plate_F"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"012","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.124.mesh","type":"RenderComponent"}],"id":"V8 BITURBO"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"021","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_ベジエカーブ.mesh","type":"RenderComponent"}],"id":"LED_F"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"022","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.123.mesh","type":"RenderComponent"}],"id":"mirror_clear"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"023","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.129.mesh","type":"RenderComponent"}],"id":"mirror_LED"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"024","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.132-1.mesh","type":"RenderComponent"}],"id":"mirror.001_Primitive_1"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"027","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.132-2.mesh","type":"RenderComponent"}],"id":"mirror.001_Primitive_2"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"030","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.132-0.mesh","type":"RenderComponent"}],"id":"mirror.001"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"029","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.133.mesh","type":"RenderComponent"}],"id":"doorhandle"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"031","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱.008.mesh","type":"RenderComponent"}],"id":"emblem_F"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"33","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.141-1.mesh","type":"RenderComponent"}],"id":"AMG logo_F_Primitive_1"}],"components":[{"position":[-1.940200686454773,0.3640538156032562,0.3079676926136017],"rotation":[-0.09561988028593481,12.061466060045014,-1.6989207635814616],"scale":[0.014639658853411674,0.014639656990766525,0.014639656990766525],"type":"TransformComponent"},{"material":"32","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.141-0.mesh","type":"RenderComponent"}],"id":"AMG logo_F"},{"components":[{"position":[1.3413594961166382,0.6351317167282104,0.3479730784893036],"rotation":[-176.56500725270854,5.045554654989506,-138.7781877829069],"scale":[0.0220062006264925,0.022006193175911903,0.022006193175911903],"type":"TransformComponent"},{"material":"32","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.145.mesh","type":"RenderComponent"}],"id":"AMG logo_R"},{"components":[{"position":[-0.33999142050743103,0.09975378960371017,-0.007328549399971962],"rotation":[-44.999994422049916,-89.98021544645263,90.00000250447816],"scale":[0.7800599336624146,0.7800599336624146,0.7800598740577698],"type":"TransformComponent"},{"material":"25","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_g_Tyre_LF.mesh","type":"RenderComponent"}],"id":"tyreLF"},{"components":[{"position":[-0.33999142050743103,0.09975378960371017,0.012580156326293945],"rotation":[-44.999994422049916,-89.98021544645263,90.00000250447816],"scale":[0.7800599336624146,0.7800599336624146,0.7800598740577698],"type":"TransformComponent"},{"material":"25","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_g_Tyre_LR.mesh","type":"RenderComponent"}],"id":"tyreLR"},{"components":[{"position":[-0.33999142050743103,0.09975378960371017,-0.016763687133789063],"rotation":[-44.999994422049916,-89.98021544645263,90.00000250447816],"scale":[0.7800599336624146,0.7800599336624146,0.7800598740577698],"type":"TransformComponent"},{"material":"25","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_g_Tyre_RF.mesh","type":"RenderComponent"}],"id":"tyreRF"},{"components":[{"position":[-0.33999142050743103,0.09975378960371017,-0.016305923461914063],"rotation":[-44.999994422049916,-89.98021544645263,90.00000250447816],"scale":[0.7800599336624146,0.7800599336624146,0.7800598740577698],"type":"TransformComponent"},{"material":"25","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_g_Tyre_RR.mesh","type":"RenderComponent"}],"id":"tyreRR"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"041","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.051.mesh","type":"RenderComponent"}],"id":"wiper3"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"025","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-1.mesh","type":"RenderComponent"}],"id":"wiper1_Primitive_1"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"047","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-2.mesh","type":"RenderComponent"}],"id":"wiper1_Primitive_2"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"046","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-3.mesh","type":"RenderComponent"}],"id":"wiper1_Primitive_3"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"048","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-4.mesh","type":"RenderComponent"}],"id":"wiper1_Primitive_4"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"049","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-5.mesh","type":"RenderComponent"}],"id":"wiper1_Primitive_5"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"038","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-6.mesh","type":"RenderComponent"}],"id":"wiper1_Primitive_6"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"042","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-7.mesh","type":"RenderComponent"}],"id":"wiper1_Primitive_7"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"043","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-8.mesh","type":"RenderComponent"}],"id":"wiper1_Primitive_8"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"044","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-9.mesh","type":"RenderComponent"}],"id":"wiper1_Primitive_9"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"045","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-0.mesh","type":"RenderComponent"}],"id":"wiper1"},{"children":[{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"025","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.060-1.mesh","type":"RenderComponent"}],"id":"wiper2_Primitive_1"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"048","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.060-2.mesh","type":"RenderComponent"}],"id":"wiper2_Primitive_2"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"044","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.060-3.mesh","type":"RenderComponent"}],"id":"wiper2_Primitive_3"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"038","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.060-4.mesh","type":"RenderComponent"}],"id":"wiper2_Primitive_4"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"042","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.060-5.mesh","type":"RenderComponent"}],"id":"wiper2_Primitive_5"},{"components":[{"position":[0,0,0],"rotation":[0,0,0],"scale":[1,1,1],"type":"TransformComponent"},{"material":"043","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.060-6.mesh","type":"RenderComponent"}],"id":"wiper2_Primitive_6"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"049","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.060-0.mesh","type":"RenderComponent"}],"id":"wiper2"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"051","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.080.mesh","type":"RenderComponent"}],"id":"windowframe_F"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.001.mesh","type":"RenderComponent"}],"id":"body.001"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.002.mesh","type":"RenderComponent"}],"id":"body.002"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.004.mesh","type":"RenderComponent"}],"id":"body.003"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.006.mesh","type":"RenderComponent"}],"id":"body.004"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.007.mesh","type":"RenderComponent"}],"id":"body.005"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.008.mesh","type":"RenderComponent"}],"id":"body.006"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.009.mesh","type":"RenderComponent"}],"id":"body.007"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.010.mesh","type":"RenderComponent"}],"id":"body.008"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.011.mesh","type":"RenderComponent"}],"id":"body.009"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.012.mesh","type":"RenderComponent"}],"id":"body.010"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.013.mesh","type":"RenderComponent"}],"id":"body.011"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.014.mesh","type":"RenderComponent"}],"id":"body.012"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.016.mesh","type":"RenderComponent"}],"id":"body.013"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"300","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.017.mesh","type":"RenderComponent"}],"id":"body.014"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"010","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.018.mesh","type":"RenderComponent"}],"id":"body.015"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"010","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.022.mesh","type":"RenderComponent"}],"id":"body.016"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"010","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.023.mesh","type":"RenderComponent"}],"id":"body.017"},{"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"},{"material":"010","mesh":"assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.024.mesh","type":"RenderComponent"}],"id":"body.018"}],"components":[{"position":[0.0,0.0,0.0],"rotation":[0.0,-0.0,0.0],"scale":[1.0,1.0,1.0],"type":"TransformComponent"}],"id":"ROOT"}, { -"components": [ + "id": "Scene", + "materials": [ { - "position": [ 0, 1, 0], - "rotation": [0, 0, 0], - "scale": [ 1, 1, 1], - "type": "TransformComponent" + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "301", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 }, { - "material":"LightMaterial", - "mesh":"assets://meshes/lightSphere_Sphere.mesh", - "type":"RenderComponent" + "albedoTexture": "assets://textures/1619527306843.tx", + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "202", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 }, { - "color": [1.0, 1.0, 1.0, 1.0], - "intensity": 200, - "type": "LightComponent" - }, - ] -}, -{ -"components": [ - { - "position": [ 2, 1, 2], - "rotation": [-180, 0, 0], - "scale": [ 1, 1, 1], - "type": "TransformComponent" + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "293", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 }, { - "material":"LightMaterial", - "mesh":"assets://meshes/lightSphere_Sphere.mesh", - "type":"RenderComponent" + "baseColor": [ 0.3328622877597809, 0.3328622877597809, 0.3328622877597809, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "292", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.40909093618392944 }, { - "color": [1.0, 1.0, 1.0, 1.0], - "intensity": 200, - "type": "LightComponent" - }, - ] -}, -{ -"components": [ - { - "position": [ 2, 1, -2], - "rotation": [-180, 0, 0], - "scale": [ 1, 1, 1], - "type": "TransformComponent" + "albedoTexture": "assets://textures/3_088_BaseColor.tx", + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "291", + "metallicFactor": 0.8500000238418579, + "metallicRoughnessTexture": "assets://textures/3_OcclusionRoughnessMetallic.tx", + "normalTexture": "assets://textures/3_088_Normal.tx", + "pipeline": "DefferedPipeline", + "roughnessFactor": 1 }, { - "material":"LightMaterial", - "mesh":"assets://meshes/lightSphere_Sphere.mesh", - "type":"RenderComponent" + "baseColor": [ 0.4582723379135132, 0.4582723379135132, 0.4582723379135132, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "289", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.25 }, { - "color": [1.0, 1.0, 1.0, 1.0], - "intensity": 200, - "type": "LightComponent" - }, - ] -}, -{ -"components": [ - { - "position": [ -2, 1, -2], - "rotation": [-180, 0, 0], - "scale": [ 1, 1, 1], - "type": "TransformComponent" + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "288", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 }, { - "material":"LightMaterial", - "mesh":"assets://meshes/lightSphere_Sphere.mesh", - "type":"RenderComponent" + "baseColor": [ 0.4582723379135132, 0.4582723379135132, 0.4582723379135132, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "272", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.25 }, { - "color": [1.0, 1.0, 1.0, 1.0], - "intensity": 200, - "type": "LightComponent" - }, - ] -}, -{ - "id": "Camera", - "components": [ - { - "type": "TransformComponent", - "position": [0.0, -2.0, 11.0], - "rotation": [0.0, 0.0, 0.0], - "scale": [1.0, 1.0, 1.0] + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "286", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 }, { - "type": "ScriptComponent", - "script_name": "MainCameraController", - "script_path": "scripts://MainScene/Camera.lua" + "baseColor": [ 0.23218044638633728, 0.293610543012619, 0.2387901395559311, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "002", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "287", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.10454545170068741 + }, + { + "baseColor": [ 0.4264627993106842, 0.4264627993106842, 0.4264627993106842, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "267", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.30000001192092896 + }, + { + "baseColor": [ 0.3328622877597809, 0.3328622877597809, 0.3328622877597809, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "266", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.40909093618392944 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "260", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "238", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "221", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "220", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "005", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "1", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "014", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "013", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "マテリアル.015", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "マテリアル.011", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "259", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "019", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.30000001192092896 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "020", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.30000001192092896 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "018", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "albedoTexture": "assets://textures/amg_gt7_BaseColor.tx", + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "017", + "metallicFactor": 1, + "metallicRoughnessTexture": "assets://textures/amg_gt7_OcclusionRoughnessMetallic.tx", + "normalTexture": "assets://textures/amg_gt7_Normal.tx", + "pipeline": "DefferedPipeline", + "roughnessFactor": 1 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "254", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "253", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "258", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.050000011920928955 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "257", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.050000011920928955 + }, + { + "baseColor": [ 0.0607406422495842, 0.0607406422495842, 0.0607406422495842, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "256", + "metallicFactor": 0.5090909004211426, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "255", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "249", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 1 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "245", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "244", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "243", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "242", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0.8000000715255737, 0.34420815110206604, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "300", + "metallicFactor": 0.6318181753158569, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.34545454382896423 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "240", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "237", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.3499999940395355 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "236", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "039", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.104545459151268 + }, + { + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "040", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 1 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "261", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "234", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0.31516581773757935, 0.31516581773757935, 0.31516581773757935, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "233", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.2545454502105713 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "232", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "248", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "247", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "246", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "191", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "016", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "albedoTexture": "assets://textures/amg_caliper.tx", + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "213", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.30000001192092896 + }, + { + "albedoTexture": "assets://textures/amg_caliper_p.tx", + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "265", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.30000001192092896 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "274", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "275", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.20000000298023224 + }, + { + "albedoTexture": "assets://textures/amg_gt2_BaseColor.tx", + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "212", + "metallicFactor": 1, + "metallicRoughnessTexture": "assets://textures/amg_gt2_OcclusionRoughnessMetallic.tx", + "pipeline": "DefferedPipeline", + "roughnessFactor": 1 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "203", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 1 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "201", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 1, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "192", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "albedoTexture": "assets://textures/amg_rearcaliper.tx", + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "200", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.30000001192092896 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "199", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "albedoTexture": "assets://textures/amg_caliper_p.tx", + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "194", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.30000001192092896 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "188", + "metallicFactor": 0.4227272868156433, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "009", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 1 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "008", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.20000000298023224 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "007", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "004", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "003", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "190", + "metallicFactor": 0.25, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0.728867769241333, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "189", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "012", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "021", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 1 + }, + { + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "022", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 1 + }, + { + "albedoTexture": "assets://textures/mirror.tx", + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "023", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.2181818187236786 + }, + { + "baseColor": [ 0.8000000715255737, 0.34420815110206604, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "030", + "metallicFactor": 0.6318181753158569, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.34545454382896423 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "024", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "027", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0 + }, + { + "baseColor": [ 0.8000000715255737, 0.34420815110206604, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "029", + "metallicFactor": 0.6318181753158569, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.34545454382896423 + }, + { + "albedoTexture": "assets://textures/benz.tx", + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "031", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.3499999940395355 + }, + { + "baseColor": [ 0.800000011920929, 0.800000011920929, 0.800000011920929, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "32", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.08181819319725037 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "33", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "albedoTexture": "assets://textures/Tyre.tx", + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "25", + "metallicFactor": 1, + "normalTexture": "assets://textures/Tyre_Base_NM.tx", + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.477609783411026 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "041", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.699999988079071 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "045", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "025", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "047", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.800000011920929 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "046", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.800000011920929 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "048", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.800000011920929 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "049", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.800000011920929 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "038", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "042", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "043", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "044", + "metallicFactor": 0, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.5 + }, + { + "baseColor": [ 0, 0, 0, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "051", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 1 + }, + { + "baseColor": [ 0.5098705291748047, 0.5098705291748047, 0.5098705291748047, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "010", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 0.3454545736312866 + }, + { + "baseColor": [ 1, 1, 1, 1 ], + "emissiveFactor": [ 1, 1, 1 ], + "id": "Scene_Material_Dummy_98", + "metallicFactor": 1, + "pipeline": "DefferedPipeline", + "roughnessFactor": 1 } ], - "children": [ + "nodes": [ { - "id": "RotationHelper", + "children": [ + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "202", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_Bolt.001-1.mesh", + "type": "RenderComponent" + } + ], + "id": "plate_R_Primitive_1" + } + ], + "components": [ + { + "position": [ 1.5608412027359009, 0.34845077991485596, 0 ], + "rotation": [ 0, 0, -90 ], + "scale": [ 0.031041301786899567, 0.031041301786899567, 0.031041301786899567 ], + "type": "TransformComponent" + }, + { + "material": "301", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_Bolt.001-0.mesh", + "type": "RenderComponent" + } + ], + "id": "plate_R" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "293", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.014.mesh", + "type": "RenderComponent" + } + ], + "id": "AMG1" + }, + { + "components": [ + { + "position": [ 0.6881826519966125, 0.264426052570343, 0.7605260610580444 ], + "rotation": [ 0, -90, 0 ], + "scale": [ 0.10732812434434891, 0.10732810944318771, 0.10732812434434891 ], + "type": "TransformComponent" + }, + { + "material": "292", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.033.mesh", + "type": "RenderComponent" + } + ], + "id": "wheel_LR" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "291", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.034.mesh", + "type": "RenderComponent" + } + ], + "id": "brake_F" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "291", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.035.mesh", + "type": "RenderComponent" + } + ], + "id": "brake_R" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "288", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.015-1.mesh", + "type": "RenderComponent" + } + ], + "id": "emblem_Primitive_1" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "272", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.015-2.mesh", + "type": "RenderComponent" + } + ], + "id": "emblem_Primitive_2" + } + ], + "components": [ + { + "position": [ -2.074213743209839, 0, 0 ], + "rotation": [ 0, -0, -89.999995674289 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "289", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.015-0.mesh", + "type": "RenderComponent" + } + ], + "id": "emblem" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "002", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.002-1.mesh", + "type": "RenderComponent" + } + ], + "id": "light_F_Primitive_1" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "287", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.002-2.mesh", + "type": "RenderComponent" + } + ], + "id": "light_F_Primitive_2" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "286", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.002-0.mesh", + "type": "RenderComponent" + } + ], + "id": "light_F" + }, + { + "components": [ + { + "position": [ -1.3753724098205566, 0.2537996768951416, -0.7528399229049683 ], + "rotation": [ -90.02075261917668, 89.98021544645263, 90.02075261917668 ], + "scale": [ 0.10554520785808563, 0.10554520785808563, 0.10554520040750504 ], + "type": "TransformComponent" + }, + { + "material": "292", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.042.mesh", + "type": "RenderComponent" + } + ], + "id": "wheel_RF" + }, + { + "components": [ + { + "position": [ 0.6881825923919678, 0.26516544818878174, -0.7607076168060303 ], + "rotation": [ 0, 90.00000250447816, -180.00000500895632 ], + "scale": [ 0.10732812434434891, 0.1073281392455101, 0.10732812434434891 ], + "type": "TransformComponent" + }, + { + "material": "292", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.043.mesh", + "type": "RenderComponent" + } + ], + "id": "wheel_RR" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "289", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.003-1.mesh", + "type": "RenderComponent" + } + ], + "id": "wheel_cap_F_Primitive_1" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "266", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.003-2.mesh", + "type": "RenderComponent" + } + ], + "id": "wheel_cap_F_Primitive_2" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "272", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.003-3.mesh", + "type": "RenderComponent" + } + ], + "id": "wheel_cap_F_Primitive_3" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "267", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.003-0.mesh", + "type": "RenderComponent" + } + ], + "id": "wheel_cap_F" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "289", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.012-1.mesh", + "type": "RenderComponent" + } + ], + "id": "wheel_cap_R_Primitive_1" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "266", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.012-2.mesh", + "type": "RenderComponent" + } + ], + "id": "wheel_cap_R_Primitive_2" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "272", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.012-3.mesh", + "type": "RenderComponent" + } + ], + "id": "wheel_cap_R_Primitive_3" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "267", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.012-0.mesh", + "type": "RenderComponent" + } + ], + "id": "wheel_cap_R" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -90.00000250447816, -0 ], + "scale": [ 0.10554520040750504, 0.10554518550634384, 0.10554520040750504 ], + "type": "TransformComponent" + }, + { + "material": "292", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円.032.mesh", + "type": "RenderComponent" + } + ], + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0], + "rotation": [ 0, 90, 0 ], + "scale": [ 0.7800599336624146, 0.7800599336624146, 0.7800598740577698 ], + "type": "TransformComponent" + }, + { + "material": "25", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_g_Tyre_LF.mesh", + "type": "RenderComponent" + } + ], + "id": "tyreLF" + } + ], + "id": "wheel_LF" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "238", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-1.mesh", + "type": "RenderComponent" + } + ], + "id": "mesh_Primitive_1" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "221", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-2.mesh", + "type": "RenderComponent" + } + ], + "id": "mesh_Primitive_2" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "220", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-3.mesh", + "type": "RenderComponent" + } + ], + "id": "mesh_Primitive_3" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "005", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-4.mesh", + "type": "RenderComponent" + } + ], + "id": "mesh_Primitive_4" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "1", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-5.mesh", + "type": "RenderComponent" + } + ], + "id": "mesh_Primitive_5" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "014", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-6.mesh", + "type": "RenderComponent" + } + ], + "id": "mesh_Primitive_6" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "013", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-7.mesh", + "type": "RenderComponent" + } + ], + "id": "mesh_Primitive_7" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "マテリアル.015", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-8.mesh", + "type": "RenderComponent" + } + ], + "id": "mesh_Primitive_8" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "マテリアル.011", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-9.mesh", + "type": "RenderComponent" + } + ], + "id": "mesh_Primitive_9" + } + ], + "components": [ + { + "position": [ -1.4013168811798096, 0.18638882040977478, 0.3837481439113617 ], + "rotation": [ -62.1615857872319, 33.36328843497788, -124.59390661278475 ], + "scale": [ 0.8023979067802429, 0.6105046272277832, 0.8023978471755981 ], + "type": "TransformComponent" + }, + { + "material": "260", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.005-0.mesh", + "type": "RenderComponent" + } + ], + "id": "mesh" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "019", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-1.mesh", + "type": "RenderComponent" + } + ], + "id": "light1_Primitive_1" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "020", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-2.mesh", + "type": "RenderComponent" + } + ], + "id": "light1_Primitive_2" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "018", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-3.mesh", + "type": "RenderComponent" + } + ], + "id": "light1_Primitive_3" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "017", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-4.mesh", + "type": "RenderComponent" + } + ], + "id": "light1_Primitive_4" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "254", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-5.mesh", + "type": "RenderComponent" + } + ], + "id": "light1_Primitive_5" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "253", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-6.mesh", + "type": "RenderComponent" + } + ], + "id": "light1_Primitive_6" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "258", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-7.mesh", + "type": "RenderComponent" + } + ], + "id": "light1_Primitive_7" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "257", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-8.mesh", + "type": "RenderComponent" + } + ], + "id": "light1_Primitive_8" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "256", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-9.mesh", + "type": "RenderComponent" + } + ], + "id": "light1_Primitive_9" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "255", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-10.mesh", + "type": "RenderComponent" + } + ], + "id": "light1_Primitive_10" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "259", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.003-0.mesh", + "type": "RenderComponent" + } + ], + "id": "light1" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "249", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.015.mesh", + "type": "RenderComponent" + } + ], + "id": "light_clear_F" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "245", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.045.mesh", + "type": "RenderComponent" + } + ], + "id": "window_R" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "244", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.031.mesh", + "type": "RenderComponent" + } + ], + "id": "windowframe_S" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "243", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.088.mesh", + "type": "RenderComponent" + } + ], + "id": "light_R" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "242", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.020.mesh", + "type": "RenderComponent" + } + ], + "id": "spoiler" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.021.mesh", + "type": "RenderComponent" + } + ], + "id": "body" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "240", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.044.mesh", + "type": "RenderComponent" + } + ], + "id": "window_F" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "237", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.025.mesh", + "type": "RenderComponent" + } + ], + "id": "spoiler2" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "039", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.026-1.mesh", + "type": "RenderComponent" + } + ], + "id": "diffuser_Primitive_1" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "040", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.026-2.mesh", + "type": "RenderComponent" + } + ], + "id": "diffuser_Primitive_2" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "236", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.026-0.mesh", + "type": "RenderComponent" + } + ], + "id": "diffuser" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "234", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.032-1.mesh", + "type": "RenderComponent" + } + ], + "id": "window_S_Primitive_1" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "261", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.032-0.mesh", + "type": "RenderComponent" + } + ], + "id": "window_S" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "232", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.034-1.mesh", + "type": "RenderComponent" + } + ], + "id": "exhaust_Primitive_1" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "233", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.034-0.mesh", + "type": "RenderComponent" + } + ], + "id": "exhaust" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "247", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.042-1.mesh", + "type": "RenderComponent" + } + ], + "id": "chassis _Primitive_1" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "246", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.042-2.mesh", + "type": "RenderComponent" + } + ], + "id": "chassis _Primitive_2" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "191", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.042-3.mesh", + "type": "RenderComponent" + } + ], + "id": "chassis _Primitive_3" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "016", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.042-4.mesh", + "type": "RenderComponent" + } + ], + "id": "chassis _Primitive_4" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "248", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.042-0.mesh", + "type": "RenderComponent" + } + ], + "id": "chassis " + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "265", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.019-1.mesh", + "type": "RenderComponent" + } + ], + "id": "caliper_F_Primitive_1" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "274", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.019-2.mesh", + "type": "RenderComponent" + } + ], + "id": "caliper_F_Primitive_2" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "275", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.019-3.mesh", + "type": "RenderComponent" + } + ], + "id": "caliper_F_Primitive_3" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "213", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.019-0.mesh", + "type": "RenderComponent" + } + ], + "id": "caliper_F" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "212", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.072.mesh", + "type": "RenderComponent" + } + ], + "id": "roof" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "203", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.087.mesh", + "type": "RenderComponent" + } + ], + "id": "windowframe_R" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "192", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.099-1.mesh", + "type": "RenderComponent" + } + ], + "id": "light_R2_Primitive_1" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "201", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.099-0.mesh", + "type": "RenderComponent" + } + ], + "id": "light_R2" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "199", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.093-1.mesh", + "type": "RenderComponent" + } + ], + "id": "caliper_R_Primitive_1" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "194", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.093-2.mesh", + "type": "RenderComponent" + } + ], + "id": "caliper_R_Primitive_2" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "200", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.093-0.mesh", + "type": "RenderComponent" + } + ], + "id": "caliper_R" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "188", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.095.mesh", + "type": "RenderComponent" + } + ], + "id": "LED_R" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "008", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.118-1.mesh", + "type": "RenderComponent" + } + ], + "id": "light_clear_R_Primitive_1" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "009", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.118-0.mesh", + "type": "RenderComponent" + } + ], + "id": "light_clear_R" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "007", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.101.mesh", + "type": "RenderComponent" + } + ], + "id": "LED_red" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "003", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.094-1.mesh", + "type": "RenderComponent" + } + ], + "id": "emblem_R_Primitive_1" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1.1040908098220825, 1.1040908098220825, 1.1040908098220825 ], + "type": "TransformComponent" + }, + { + "material": "004", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.094-0.mesh", + "type": "RenderComponent" + } + ], + "id": "emblem_R" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "189", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.107-1.mesh", + "type": "RenderComponent" + } + ], + "id": "light_red_R_Primitive_1" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "190", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.107-0.mesh", + "type": "RenderComponent" + } + ], + "id": "light_red_R" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "202", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_Bolt.002-1.mesh", + "type": "RenderComponent" + } + ], + "id": "plate_F_Primitive_1" + } + ], + "components": [ + { + "position": [ -2.18658185005188, 0.22414933145046234, 0 ], + "rotation": [ 179.999991348578, -9.334667642611415e-06, -89.999995674289 ], + "scale": [ 0.031041301786899567, 0.031041301786899567, 0.031041301786899567 ], + "type": "TransformComponent" + }, + { + "material": "301", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_Bolt.002-0.mesh", + "type": "RenderComponent" + } + ], + "id": "plate_F" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "012", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.124.mesh", + "type": "RenderComponent" + } + ], + "id": "V8 BITURBO" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "021", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_ベジエカーブ.mesh", + "type": "RenderComponent" + } + ], + "id": "LED_F" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "022", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.123.mesh", + "type": "RenderComponent" + } + ], + "id": "mirror_clear" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "023", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.129.mesh", + "type": "RenderComponent" + } + ], + "id": "mirror_LED" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "024", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.132-1.mesh", + "type": "RenderComponent" + } + ], + "id": "mirror.001_Primitive_1" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "027", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.132-2.mesh", + "type": "RenderComponent" + } + ], + "id": "mirror.001_Primitive_2" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "030", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.132-0.mesh", + "type": "RenderComponent" + } + ], + "id": "mirror.001" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "029", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.133.mesh", + "type": "RenderComponent" + } + ], + "id": "doorhandle" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "031", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱.008.mesh", + "type": "RenderComponent" + } + ], + "id": "emblem_F" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "33", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.141-1.mesh", + "type": "RenderComponent" + } + ], + "id": "AMG logo_F_Primitive_1" + } + ], + "components": [ + { + "position": [ -1.940200686454773, 0.3640538156032562, 0.3079676926136017 ], + "rotation": [ -0.09561988028593481, 12.061466060045014, -1.6989207635814616 ], + "scale": [ 0.014639658853411674, 0.014639656990766525, 0.014639656990766525 ], + "type": "TransformComponent" + }, + { + "material": "32", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.141-0.mesh", + "type": "RenderComponent" + } + ], + "id": "AMG logo_F" + }, + { + "components": [ + { + "position": [ 1.3413594961166382, 0.6351317167282104, 0.3479730784893036 ], + "rotation": [ -176.56500725270854, 5.045554654989506, -138.7781877829069 ], + "scale": [ 0.0220062006264925, 0.022006193175911903, 0.022006193175911903 ], + "type": "TransformComponent" + }, + { + "material": "32", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.145.mesh", + "type": "RenderComponent" + } + ], + "id": "AMG logo_R" + }, + { + "components": [ + { + "position": [ -0.33999142050743103, 0.09975378960371017, 0.012580156326293945 ], + "rotation": [ -44.999994422049916, -89.98021544645263, 90.00000250447816 ], + "scale": [ 0.7800599336624146, 0.7800599336624146, 0.7800598740577698 ], + "type": "TransformComponent" + }, + { + "material": "25", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_g_Tyre_LR.mesh", + "type": "RenderComponent" + } + ], + "id": "tyreLR" + }, + { + "components": [ + { + "position": [ -0.33999142050743103, 0.09975378960371017, -0.016763687133789062 ], + "rotation": [ -44.999994422049916, -89.98021544645263, 90.00000250447816 ], + "scale": [ 0.7800599336624146, 0.7800599336624146, 0.7800598740577698 ], + "type": "TransformComponent" + }, + { + "material": "25", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_g_Tyre_RF.mesh", + "type": "RenderComponent" + } + ], + "id": "tyreRF" + }, + { + "components": [ + { + "position": [ -0.33999142050743103, 0.09975378960371017, -0.016305923461914062 ], + "rotation": [ -45, -90, 90 ], + "scale": [ 0.7800599336624146, 0.7800599336624146, 0.7800598740577698 ], + "type": "TransformComponent" + }, + { + "material": "25", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_g_Tyre_RR.mesh", + "type": "RenderComponent" + } + ], + "id": "tyreRR" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "041", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.051.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper3" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "025", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-1.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper1_Primitive_1" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "047", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-2.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper1_Primitive_2" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "046", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-3.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper1_Primitive_3" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "048", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-4.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper1_Primitive_4" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "049", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-5.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper1_Primitive_5" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "038", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-6.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper1_Primitive_6" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "042", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-7.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper1_Primitive_7" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "043", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-8.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper1_Primitive_8" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "044", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-9.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper1_Primitive_9" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "045", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_円柱-0.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper1" + }, + { + "children": [ + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "025", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.060-1.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper2_Primitive_1" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "048", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.060-2.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper2_Primitive_2" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "044", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.060-3.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper2_Primitive_3" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "038", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.060-4.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper2_Primitive_4" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "042", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.060-5.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper2_Primitive_5" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "043", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.060-6.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper2_Primitive_6" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "049", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.060-0.mesh", + "type": "RenderComponent" + } + ], + "id": "wiper2" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "051", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.080.mesh", + "type": "RenderComponent" + } + ], + "id": "windowframe_F" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, -0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.001.mesh", + "type": "RenderComponent" + } + ], + "id": "body.001" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.002.mesh", + "type": "RenderComponent" + } + ], + "id": "body.002" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.004.mesh", + "type": "RenderComponent" + } + ], + "id": "body.003" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.006.mesh", + "type": "RenderComponent" + } + ], + "id": "body.004" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.007.mesh", + "type": "RenderComponent" + } + ], + "id": "body.005" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.008.mesh", + "type": "RenderComponent" + } + ], + "id": "body.006" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.009.mesh", + "type": "RenderComponent" + } + ], + "id": "body.007" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.010.mesh", + "type": "RenderComponent" + } + ], + "id": "body.008" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.011.mesh", + "type": "RenderComponent" + } + ], + "id": "body.009" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.012.mesh", + "type": "RenderComponent" + } + ], + "id": "body.010" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.013.mesh", + "type": "RenderComponent" + } + ], + "id": "body.011" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.014.mesh", + "type": "RenderComponent" + } + ], + "id": "body.012" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.016.mesh", + "type": "RenderComponent" + } + ], + "id": "body.013" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "300", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.017.mesh", + "type": "RenderComponent" + } + ], + "id": "body.014" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "010", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.018.mesh", + "type": "RenderComponent" + } + ], + "id": "body.015" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "010", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.022.mesh", + "type": "RenderComponent" + } + ], + "id": "body.016" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "010", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.023.mesh", + "type": "RenderComponent" + } + ], + "id": "body.017" + }, + { + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "010", + "mesh": "assets://meshes/uploads_files_3035728_AMG+GT+exterior+only_平面.024.mesh", + "type": "RenderComponent" + } + ], + "id": "body.018" + } + ], + "components": [ + { + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + } + ], + "id": "ROOT" + }, + { + "components": [ + { + "position": [ 0, 10, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "LightMaterial", + "mesh": "assets://meshes/lightSphere_Sphere.mesh", + "type": "RenderComponent" + }, + { + "color": [ 1, 1, 1, 1 ], + "intensity": 10, + "type": "LightComponent" + } + ] + }, + { + "components": [ + { + "position": [ 2, 1, 2 ], + "rotation": [ -180, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "LightMaterial", + "mesh": "assets://meshes/lightSphere_Sphere.mesh", + "type": "RenderComponent" + }, + { + "color": [ 1, 1, 1, 1 ], + "intensity": 10, + "type": "LightComponent" + } + ] + }, + { + "components": [ + { + "position": [ 2, 1, -2 ], + "rotation": [ -180, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "LightMaterial", + "mesh": "assets://meshes/lightSphere_Sphere.mesh", + "type": "RenderComponent" + }, + { + "color": [ 1, 1, 1, 1 ], + "intensity": 10, + "type": "LightComponent" + } + ] + }, + { + "components": [ + { + "position": [ -2, 1, -2 ], + "rotation": [ -180, 0, 0 ], + "scale": [ 1, 1, 1 ], + "type": "TransformComponent" + }, + { + "material": "LightMaterial", + "mesh": "assets://meshes/lightSphere_Sphere.mesh", + "type": "RenderComponent" + }, + { + "color": [ 1, 1, 1, 1 ], + "intensity": 10, + "type": "LightComponent" + } + ] + }, + { + "id": "Camera", "components": [ { "type": "TransformComponent", - "position": [0.0, 0.0, 0.0], - "rotation": [0.0, 0.0, 0.0], - "scale": [1.0, 1.0, 1.0] - }, - { - "type": "CameraComponent", - "view": "Perspective", - "fov": 90, - "near": 0.001, - "far": 1000, - "aspectRatio": 1.3333 + "position": [ 0, -2, 11 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ] }, { "type": "ScriptComponent", - "script_name": "MainCameraRotationHelper", - "script_path": "scripts://MainScene/CameraHelper.lua" + "script_name": "MainCameraController", + "script_path": "scripts://MainScene/Camera.lua" + } + ], + "children": [ + { + "id": "RotationHelper", + "components": [ + { + "type": "TransformComponent", + "position": [ 0, 0, 0 ], + "rotation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ] + }, + { + "type": "CameraComponent", + "view": "Perspective", + "fov": 90, + "near": 0.001, + "far": 1000, + "aspectRatio": 1.3333 + }, + { + "type": "ScriptComponent", + "script_name": "MainCameraRotationHelper", + "script_path": "scripts://MainScene/CameraHelper.lua" + } + ] } ] } - ] -} -], -"activeCamera": "Camera.RotationHelper" + ], + "activeCamera": "Camera.RotationHelper" } diff --git a/scenes/DamagedHelmet.evsc b/scenes/DamagedHelmet.evsc index d93b318..923e398 100644 --- a/scenes/DamagedHelmet.evsc +++ b/scenes/DamagedHelmet.evsc @@ -34,21 +34,9 @@ { "components": [ { - "position": [ - 0, - 0, - 0 - ], - "rotation": [ - -180, - 180, - 0 - ], - "scale": [ - 1, - 1, - 1 - ], + "position": [ 0, 0, 0 ], + "rotation": [ -180, 0, 0 ], + "scale": [ 1, 1, 1 ], "type": "TransformComponent" }, { @@ -99,9 +87,9 @@ }, { "color": [1.0, 1.0, 1.0, 1.0], - "intensity": 200, + "intensity": 20, "type": "LightComponent" - }, + } ] }, { @@ -119,9 +107,9 @@ }, { "color": [1.0, 1.0, 1.0, 1.0], - "intensity": 200, + "intensity": 20, "type": "LightComponent" - }, + } ] }, { @@ -139,9 +127,9 @@ }, { "color": [1.0, 1.0, 1.0, 1.0], - "intensity": 200, + "intensity": 20, "type": "LightComponent" - }, + } ] }, {