Fix blank animqueues, and add facing=math.auto to animate
This commit is contained in:
@@ -33,6 +33,7 @@
|
||||
|
||||
enum class SimpleDynamicTag {
|
||||
UNINITIALIZED,
|
||||
AUTO,
|
||||
STRING,
|
||||
NUMBER,
|
||||
BOOLEAN,
|
||||
@@ -70,6 +71,10 @@ struct SimpleDynamic {
|
||||
type=SimpleDynamicTag::UNINITIALIZED; s.clear(); x=y=z=0;
|
||||
}
|
||||
|
||||
void set_auto() {
|
||||
type=SimpleDynamicTag::AUTO; s.clear(); x=y=z=0;
|
||||
}
|
||||
|
||||
void set_string(std::string_view is) {
|
||||
type=SimpleDynamicTag::STRING; s=is; x=y=z=0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user