diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2021-02-13 10:11:23 -0500 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2021-02-13 10:11:23 -0500 |
| commit | 59dfd3da4d3e5d4a368a664c51c22bbdc8ff2ca4 (patch) | |
| tree | a86427d740156719879baba4b0577285a5849f7a /src/map.cpp | |
| parent | 560ac0c3f5fc561a3db490d8f4a33c3e19296083 (diff) | |
| download | tanetane-59dfd3da4d3e5d4a368a664c51c22bbdc8ff2ca4.tar.gz tanetane-59dfd3da4d3e5d4a368a664c51c22bbdc8ff2ca4.tar.bz2 tanetane-59dfd3da4d3e5d4a368a664c51c22bbdc8ff2ca4.zip | |
Added sprite shadows
Diffstat (limited to 'src/map.cpp')
| -rw-r--r-- | src/map.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
| diff --git a/src/map.cpp b/src/map.cpp index da382fd..3686bbd 100644 --- a/src/map.cpp +++ b/src/map.cpp | |||
| @@ -74,6 +74,8 @@ Map::Map(std::string_view name) : name_(name) { | |||
| 74 | p.animationFilename = property.getStringValue(); | 74 | p.animationFilename = property.getStringValue(); |
| 75 | } else if (property.getName() == "interactionScript") { | 75 | } else if (property.getName() == "interactionScript") { |
| 76 | p.interactionScript = property.getStringValue(); | 76 | p.interactionScript = property.getStringValue(); |
| 77 | } else if (property.getName() == "shadow") { | ||
| 78 | p.shadow = property.getBoolValue(); | ||
| 77 | } | 79 | } |
| 78 | } | 80 | } |
| 79 | 81 | ||
