Navigation

    • Register
    • Login
    • Search
    • Categories
    1. Home
    2. Crea
    C
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Crea

    @Crea

    0
    Reputation
    5
    Posts
    4
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    Crea Follow

    Posts made by Crea

    • R21.207 How to apply Reset Scale with compensating points to all selected objects?

      Hi, devs. I'm working with a rigging model, and in some cases I have to scale it which will make the scale value not be 1 (Figure 1). And every child object's real scale value is changed.
      Figure 1
      f5ee8e14-e99e-4d7f-a8b9-ba3db92693ca-image.png

      Then I'm using Reset Scale( c4d. CallCommand(12317) )(Figure 2)
      to solve this problem, but it can only solve them one by one selected.

      Figure 2
      6494c922-a412-49fa-bb82-b9196f1b3339-image.png

      Then I wrote a Python script to see if this would be applied by one click.

      import c4d
      
      def main():
      
          SelectedObjs = doc.GetActiveObjects(1) 
          cnt = len(SelectedObjs)
      
          print SelectedObjs # to check whether objs can be read
      
          for obj in SelectedObjs:
              print obj # to check whether each obj can be read 
              c4d.CallCommand(12317,0)
      
      if __name__=='__main__':
      main()
      

      And it turned out that objects could be read indeed, but Reset Scale just didn't make effects to children objects.

      Is there anyway can solve this Reset Scale problem? I didn't use freeze scale because I worried about errors happenning in interactions with like Xparticle, dynamics, simulations stuffs.

      posted in Cinema 4D Development
      C
      Crea
    • RE: C4D R21.207 Console don't do anything

      Finally fix it! I reinstalled c4d and everything goes well! Thank you for all you helps!

      posted in Cinema 4D Development
      C
      Crea
    • RE: C4D R21.207 Console don't do anything

      @m_adam
      Nope.
      Even I restart it, plus remoing all my plugin, ain't no fixing happening.

      https://www.dropbox.com/s/kudn4ol6j7zg8hn/problem.mp4?dl=0

      posted in Cinema 4D Development
      C
      Crea
    • RE: C4D R21.207 Console don't do anything

      @m_adam
      reset tried and can't do.
      Here is the problem dropbox link.
      https://www.dropbox.com/h?preview=problem.mp4

      posted in Cinema 4D Development
      C
      Crea
    • C4D R21.207 Console don't do anything

      d3f4d85d-e280-4f24-a257-fafa7f91138e-image.png
      No matter what I do,
      print, drag, calculate ,etc.
      No result comes out.

      How to fix this, please.

      posted in Cinema 4D Development
      C
      Crea