From 50639e2378b2614169f6f7c259f55ea86c8b317c Mon Sep 17 00:00:00 2001 From: Ruan Lucas <79365912+RuanLucasGD@users.noreply.github.com> Date: Sat, 3 Jun 2023 12:03:21 -0400 Subject: [PATCH] fix doc --- Source/Engine/Level/Level.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Engine/Level/Level.h b/Source/Engine/Level/Level.h index e578d8090..203930bac 100644 --- a/Source/Engine/Level/Level.h +++ b/Source/Engine/Level/Level.h @@ -465,17 +465,17 @@ public: public: /// - /// Tries to find the actor with the given parentTag (returns the first one found). + /// Tries to find the actor with the given tag (returns the first one found). /// - /// The parentTag of the actor to search for. + /// The tag of the actor to search for. /// The custom root actor to start searching from (hierarchical), otherwise null to search all loaded scenes. /// Found actor or null. API_FUNCTION() static Actor* FindActor(const Tag& tag, Actor* root = nullptr); /// - /// Tries to find the actors with the given parentTag (returns all found). + /// Tries to find the actors with the given tag (returns all found). /// - /// The parentTag of the actor to search for. + /// The tag of the actor to search for. /// The custom root actor to start searching from (hierarchical), otherwise null to search all loaded scenes. /// Found actors or empty if none. API_FUNCTION() static Array FindActors(const Tag& tag, Actor* root = nullptr);