Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/05/2024 in Posts

  1. The new update came out a few hours ago ... I was getting anxious about when that would come out as I had unavoidable delays with my next feature suggestions list... It's quite a big update ! Lots of things to explore. I'm still waiting for Rocket Lasso to air something so I can understand what those "user-defined particle properties" are... Full feature list: https://help.maxon.net/c4d/en-us/Default.htm#html/33010.html?TocPath=_____3 Rest of MAXON ONE showcase: Soon a new Ask the Trainer will air. It is titled special so I guess it will be about 2025.1
    3 points
  2. Love Noseman, he is even more fun in person 🙂 Personally, I am the happiest with proper object inputs for capsules, that is a big feature for me
    1 point
  3. New Booleans are definitely better. Far superior hierarchical / tag-based workflow, no longer requires solid operands, operands can now intersect each other with less likelihood of problems, glitching is much reduced in animation setups, surfacing is generally better, and it is faster to calculate than the old system was. It also succeeds in many situations where the old one would fail. So, as someone who has been rigorously testing this for a while, I have to say I am very impressed with it and it is a significant upgrade to Cinema's modelling toolset. CBR
    1 point
  4. Awesome script, but it doesn't copy the object's position, rotation, and scale. Here's a version that does that: import c4d def main(): objs = doc.GetActiveObjects(0) for obj in objs: inst = c4d.BaseObject(c4d.Oinstance) inst.InsertAfter(obj) inst[c4d.INSTANCEOBJECT_LINK] = obj inst.SetName(obj.GetName()+"_inst") orig_pos = c4d.BaseObject.GetAbsPos(obj) orig_rot = c4d.BaseObject.GetAbsRot(obj) orig_scl = c4d.BaseObject.GetAbsScale(obj) print(orig_pos, orig_rot, orig_scl) inst.SetAbsPos(orig_pos) inst.SetAbsRot(orig_rot) inst.SetAbsScale(orig_scl) c4d.EventAdd() if __name__=='__main__': main()
    1 point
×
×
  • Create New...