On 24/09/2013 at 06:25, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 15
Platform: Windows ;
Language(s) : C.O.F.F.E.E ;
---------
Hello can I ask what changed with SendModelingCommand and Bevel for COFFEE scripts?
this is working in R14
var bc = new(BaseContainer);
bc->SetData(MDATA_BEVEL_OFFSET1 , 2);
SendModelingCommand(ID_MODELING_BEVEL_TOOL, NULL, op, bc, MODIFY_POLYGONSELECTION);
and this not for R15 even if I change ID to 431000015
var bc = new(BaseContainer);
bc->SetData(MDATA_BEVEL_OFFSET_MODE , 2);
bc->SetData(MDATA_BEVEL_RADIUS , 1/2.0);
SendModelingCommand(ID_MODELING_BEVEL_TOOL, NULL, op, bc, MODIFY_POLYGONSELECTION);
Thanks for any info!