Re: Expression Limit (100?)
I think (if I remember correctly, that the limit is 176 conditions / actions / expressions.
Re: Expression Limit (100?)
Thanks for such a quick reply Francois. It is helpful to know that the limit is from conditions, actions and expressions combined.
I'd like to take the opportunity to ask you to consider a raise on the limit in the future, if it is possible.
Thanks again.
Re: Expression Limit (100?)
Ehm, this can't be right... My brother uses alot of expressions/actions in the new Phizix object... Can't remember how many though :S
Re: Expression Limit (100?)
The last I heard:
128 conditions per event
128 actions per event
1000 unique objects in the frame (but 20,000 overall in the frame
65,500 images/sounds
20,000 events displayed at any one time.
Marv
Re: Expression Limit (100?)
Neither of those numbers are related to this discussion though.
Re: Expression Limit (100?)
If you open rTemplate.h in the rSDK include folder and find these three lines:
Code:
#define CONDITION_ID(id) (26000+(id)*10)
#define ACTION_ID(id) (25000+(id)*10)
#define EXPRESSION_ID(id) (27000+(id)*10)
It should work if you change them to:
Code:
#define CONDITION_ID(id) (26000+(id))
#define ACTION_ID(id) (25000+(id))
#define EXPRESSION_ID(id) (27000+(id))
Re: Expression Limit (100?)
I don't know about the standard SDK, but in rSDK you can have a lot more than 176, if you use the fix Jamie posted. In Phizix I now have 320 Actions without any problems.
Re: Expression Limit (100?)
Could that potentially give 1000 for each Jamie? Or would the 176 total limit mentioned by Francois still apply as something inherent to MMF 2?
EDIT - Thanks for the update Werbad. That sounds reassuring.
My thanks again to everyone. I am impressed and grateful for the swift responses.
Re: Expression Limit (100?)
Hope we'll get the documentation for all of those... :grin: This seems very impressive.
Re: Expression Limit (100?)
Sorry Nifflas and everyone else. My brain leakage.
Marv