Copy link to clipboard
Copied
Hello,
I am working in a project using HTML5 canvas and Javascript,
The adobe animate virtual camera does not seem to be working with objects that are added using code.
For example
If I added the object from a libarary
var SomeObject = new lib.SomeObject ();
this object will be automatically pinned to the virtual camera,
I tried to unpin it for example using
AdobeAn.VirtualCamera.getCamera(exportRoot).unpinCamera();
But I will get this error:
Uncaught TypeError: Cannot create property 'parent' on number '10'
Any ideas?
Thank you
Hi.
One way of solving this is to add your instance to a layer instead of adding it directly to the root. For example:
this.yourAttachedLayer.addChild(someObject);
I hope this helps.
Regards,
JC
Copy link to clipboard
Copied
Hi.
One way of solving this is to add your instance to a layer instead of adding it directly to the root. For example:
this.yourAttachedLayer.addChild(someObject);
I hope this helps.
Regards,
JC
Copy link to clipboard
Copied
Yes that worked, thank you for your help 😃
Copy link to clipboard
Copied
You're welcome!