Навёл порядок в тестах. Добавил тесты для мира. Исправил ошибку в SpawnActorFromClass
This commit is contained in:
@@ -18,7 +18,7 @@ class Actor : public ISave, public IRTTI
|
||||
|
||||
std::shared_ptr<Vector3D> loc_, rot_, scale_;
|
||||
|
||||
std::list<std::string> tags;
|
||||
std::list<std::string> tags_;
|
||||
|
||||
protected:
|
||||
virtual void OnDestroy();
|
||||
@@ -52,7 +52,7 @@ public:
|
||||
|
||||
void AddTag(const std::string& tag) noexcept;
|
||||
void RemoveTag(const std::string& tag) noexcept;
|
||||
const std::list<std::string>& GetTags() const { return tags; }
|
||||
const std::list<std::string>& GetTags() const { return tags_; }
|
||||
|
||||
std::shared_ptr<World> GetWorld() const { return world_; }
|
||||
const std::string& GetName() const { return name_; }
|
||||
|
||||
Reference in New Issue
Block a user