Added support to insert the image of a clip inside a Tracked Object

This commit is contained in:
Brenno
2021-02-04 15:45:33 -03:00
parent 2e47325c8f
commit d24c2e451c
5 changed files with 63 additions and 1 deletions

View File

@@ -41,11 +41,13 @@ namespace openshot{
{
// Initializes the id as "None"
id = "None";
childClipId = "None";
}
// Default constructor
TrackedObjectBase::TrackedObjectBase(std::string _id) : visible(1.0)
{
Id(_id);
childClipId = "None";
}
}