AE ENHANCERS

Expressions/Scripts/Presets
It is currently Sat May 18, 2013 5:11 am

All times are UTC - 8 hours [ DST ]




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: Can I check if a layer has an effect?
PostPosted: Tue Aug 23, 2011 9:27 am 
Offline

Joined: Wed Sep 21, 2005 3:47 am
Posts: 9
Hi to all!

I am tweaking Ebberts' collission detector for a project. There are going to be a lot of layers in the comp, and some of them will work as obstacles for a collision. I want to make some of these layers obstacles, and one object to collide should detect them. So the ideal would be

if (L.effect("IsObject")(Checkbox))

to check every layer in every frame before going to the collision check. But if a layer doesn't have an effect called IsObject, the expression won't work. Is there a way to detect if a layer has an effect with particular name so I don't have to create this effect on every layer?

Regards


Top
 Profile  
 
 Post subject: Re: Can I check if a layer has an effect?
PostPosted: Tue Aug 23, 2011 11:31 am 
Offline

Joined: Sat Jun 26, 2004 10:01 am
Posts: 297
Location: Folsom, CA
Here's an example that should count the layers with the checkbox:

Code:
n = 0;
for (i = 1; i <= thisComp.numLayers; i++){
  if (i == index) continue; // skip myself
  try{
    thisComp.layer(i).effect("isObject")("Checkbox");
  }catch (e){
    continue;
  }
  n++;
}
n


Dan

_________________
http://www.motionscript.com


Top
 Profile  
 
 Post subject: Re: Can I check if a layer has an effect?
PostPosted: Tue Aug 23, 2011 1:08 pm 
Offline

Joined: Wed Sep 21, 2005 3:47 am
Posts: 9
Thanks a lot, Dan, it's now working beatifully.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC - 8 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group