summary refs log tree commit diff stats
path: root/src/map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.cpp')
-rw-r--r--src/map.cpp2
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