where to get sdk coffee 85
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 21/10/2005 at 02:56, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 85
Platform: Mac ;
Language(s) : C.O.F.F.E.E ;---------
Hi,
I'm new to this so have patience with me. I finally managed to create a plugin that adds a Nullobject to the scene, withvar newObj=new(NullObject);
I was wondering though about this new alloc function, if this is only for release 9 and if it is
where I can find the coffee SDK for 85,
since new(Ocube); for example is not working.
I have been looking up old topics, but since I am really new to this and dont know anywhere else to look, could anyone please help me?Thanks!
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 21/10/2005 at 03:07, xxxxxxxx wrote:
This function is not new in R9 and should work in R8.5 as well, afaics. (In fact, the opposite is TRUE. In R9 the new AllocObject() function deprecates the "new(xObject)" allocation.)
The newest C.O.F.F.E.E. SDK documentation available before R9 was the version for R6.3, which was mostly valid for R8.5 as well. It only seems to be available for download from the old download page at <[URL-REMOVED]>
[URL-REMOVED] @maxon: This section contained a non-resolving link which has been removed.
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 21/10/2005 at 03:10, xxxxxxxx wrote:
Instead of new(Ocube) you should use:
var obj = new(PrimitiveObject); obj->SetPrimitiveType(PRIMITIVE_CUBE);
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 21/10/2005 at 03:51, xxxxxxxx wrote:
Thanks for your help, I realize that I am still misunderstanding a lot that is documented in the SDK.
But let me ask this question:
I couldn't find SetPrimitiveType. Where do I find that in the SDK? -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 21/10/2005 at 04:26, xxxxxxxx wrote:
Ok, Ithink I found it in the old SDK, thanks for your help!!!!