armory/Shaders/world_pass/world_pass.json

116 lines
2 KiB
JSON
Raw Normal View History

2015-12-17 20:07:23 +01:00
{
"contexts": [
{
2017-12-20 10:19:44 +01:00
"name": "world_pass",
2016-10-17 12:02:41 +02:00
"depth_write": false,
"compare_mode": "less",
"cull_mode": "clockwise",
2015-12-17 20:07:23 +01:00
"links": [
{
2016-08-25 00:26:01 +02:00
"name": "SMVP",
2016-07-20 01:14:28 +02:00
"link": "_skydomeMatrix"
2016-06-03 17:18:38 +02:00
},
2016-07-10 00:51:39 +02:00
{
2016-08-25 00:26:01 +02:00
"name": "backgroundCol",
2016-07-10 00:51:39 +02:00
"link": "_backgroundCol",
"ifdef": ["_EnvCol"]
},
2016-06-03 17:18:38 +02:00
{
2016-08-25 00:26:01 +02:00
"name": "A",
2016-06-03 17:18:38 +02:00
"link": "_hosekA",
2016-06-30 13:22:05 +02:00
"ifdef": ["_EnvSky"]
2016-06-03 17:18:38 +02:00
},
{
2016-08-25 00:26:01 +02:00
"name": "B",
2016-06-03 17:18:38 +02:00
"link": "_hosekB",
2016-06-30 13:22:05 +02:00
"ifdef": ["_EnvSky"]
2016-06-03 17:18:38 +02:00
},
{
2016-08-25 00:26:01 +02:00
"name": "C",
2016-06-03 17:18:38 +02:00
"link": "_hosekC",
2016-06-30 13:22:05 +02:00
"ifdef": ["_EnvSky"]
2016-06-03 17:18:38 +02:00
},
{
2016-08-25 00:26:01 +02:00
"name": "D",
2016-06-03 17:18:38 +02:00
"link": "_hosekD",
2016-06-30 13:22:05 +02:00
"ifdef": ["_EnvSky"]
2016-06-03 17:18:38 +02:00
},
{
2016-08-25 00:26:01 +02:00
"name": "E",
2016-06-03 17:18:38 +02:00
"link": "_hosekE",
2016-06-30 13:22:05 +02:00
"ifdef": ["_EnvSky"]
2016-06-03 17:18:38 +02:00
},
{
2016-08-25 00:26:01 +02:00
"name": "F",
2016-06-03 17:18:38 +02:00
"link": "_hosekF",
2016-06-30 13:22:05 +02:00
"ifdef": ["_EnvSky"]
2016-06-03 17:18:38 +02:00
},
{
2016-08-25 00:26:01 +02:00
"name": "G",
2016-06-03 17:18:38 +02:00
"link": "_hosekG",
2016-06-30 13:22:05 +02:00
"ifdef": ["_EnvSky"]
2016-06-03 17:18:38 +02:00
},
{
2016-08-25 00:26:01 +02:00
"name": "H",
2016-06-03 17:18:38 +02:00
"link": "_hosekH",
2016-06-30 13:22:05 +02:00
"ifdef": ["_EnvSky"]
2016-06-03 17:18:38 +02:00
},
{
2016-08-25 00:26:01 +02:00
"name": "I",
2016-06-03 17:18:38 +02:00
"link": "_hosekI",
2016-06-30 13:22:05 +02:00
"ifdef": ["_EnvSky"]
2016-06-03 17:18:38 +02:00
},
{
2016-08-25 00:26:01 +02:00
"name": "Z",
2016-06-03 17:18:38 +02:00
"link": "_hosekZ",
2016-06-30 13:22:05 +02:00
"ifdef": ["_EnvSky"]
2016-07-12 00:09:02 +02:00
},
2017-12-13 00:10:30 +01:00
{
"name": "hosekSunDirection",
"link": "_hosekSunDirection",
2017-12-13 00:10:30 +01:00
"ifdef": ["_EnvSky"]
},
2016-07-12 00:09:02 +02:00
{
2016-08-25 00:26:01 +02:00
"name": "time",
2016-07-12 00:09:02 +02:00
"link": "_time",
"ifdef": ["_EnvClouds"]
},
{
2019-04-25 22:39:08 +02:00
"name": "scloudsBase",
2019-04-26 11:12:09 +02:00
"link": "$clouds_base.raw",
2016-07-12 00:09:02 +02:00
"ifdef": ["_EnvClouds"]
},
{
2019-04-25 22:39:08 +02:00
"name": "scloudsDetail",
2019-04-26 11:12:09 +02:00
"link": "$clouds_detail.raw",
2019-04-25 22:39:08 +02:00
"ifdef": ["_EnvClouds"]
},
{
"name": "scloudsMap",
2019-04-26 11:12:09 +02:00
"link": "$clouds_map.png",
2019-04-25 22:39:08 +02:00
"ifdef": ["_EnvClouds"]
2016-11-03 19:07:16 +01:00
},
{
"name": "screenSize",
"link": "_screenSize",
"ifdef": ["_EnvImg"]
2017-12-13 00:10:30 +01:00
},
{
"name": "envmap",
"link": "_envmap",
"ifdef": ["_EnvTex", "_EnvImg"]
},
{
"name": "envmapStrength",
2017-12-20 22:56:22 +01:00
"link": "_envmapStrength",
"ifdef": ["_EnvStr"]
2015-12-17 20:07:23 +01:00
}
],
2016-01-31 00:20:07 +01:00
"texture_params": [],
2017-12-20 10:19:44 +01:00
"vertex_shader": "world_pass.vert.glsl",
2020-05-06 18:11:02 +02:00
"fragment_shader": "world_pass.frag.glsl",
"color_attachments": ["_HDR"]
2015-12-17 20:07:23 +01:00
}
]
}