This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Exclude a variety of commonly ignored directories. | |
exclude = [ | |
".bzr", | |
".direnv", | |
".eggs", | |
".git", | |
".git-rewrite", | |
".hg", | |
".ipynb_checkpoints", | |
".mypy_cache", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
"id": 0, | |
"name": "Subway", | |
"description": "Fastfood Sandwiches", | |
"address": "ZH", | |
"latitude": 0.0, | |
"longitude": 0.0, | |
"phone": "-", | |
"website": "www.subway.ch", | |
"imageUrl": "https://www.allrecipes.com/thmb/Sb7Xjv5oJJuovAoZCg1IO4Bt3vg=/1500x0/filters:no_upscale():max_bytes(150000):strip_icc()/AR-subway-4x3-6e1f8bb7150647bbbc16a0605a394b86.jpg", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shader_type spatial; | |
uniform float radius : hint_range(0, 10) = 0.2; | |
uniform float thickness : hint_range(0.01, 1.0) = 0.02; | |
void fragment() { | |
// apply color from sprite modulate property | |
ALBEDO = COLOR.rgb; | |
// offset depth to prevent z-fighting |