Maxon Developers Maxon Developers
    • Documentation
      • Cinema 4D Python API
      • Cinema 4D C++ API
      • Cineware API
      • ZBrush GoZ API
      • Code Examples on Github
    • Forum
    • Downloads
    • Support
      • Support Procedures
      • Registered Developer Program
      • Plugin IDs
      • Contact Us
    • Categories
      • Overview
      • News & Information
      • Cinema 4D SDK Support
      • Cineware SDK Support
      • ZBrush 4D SDK Support
      • Bugs
      • General Talk
    • Unread
    • Recent
    • Tags
    • Users
    • Login
    1. Maxon Developers Forum
    2. zhhm156
    3. Posts
    Z
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 7
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by zhhm156

    • problem about TeamRender process been stopped acciently

      hi guys:
      I tried rendering my project using function of TeamRender.But on occasion,I dont know whats going on while my team machines have been stopped acciently.Message on the console just told me my Team machines went offline , but its not doubt that network have worked all the time. My C4D is R19. Can anyone else help me solve this problem?

      posted in Cinema 4D SDK r19
      Z
      zhhm156
    • RE: how to import c4d on my python project

      @m_adam I have read maxon offical API Transition about R20 just before, And it made me a little bit astonished,which there are many changes in API between R20 and R19. It really puts my thought off even if i would like to use c4dpy as my python interpreter (╯ ̄Д ̄)╯

      posted in Cinema 4D SDK
      Z
      zhhm156
    • RE: how to import c4d on my python project

      Thanks firstly,you have made perfect answer i need, And i will keep your reminding about usage of QA functionationlty correctly in my mind.As your suggestion, i wonder if i tranfer my project from R19 to R20,are there some sources needed to change because of Compatibility? (PS: my project is made up of C++codes with a little bit of python)

      posted in Cinema 4D SDK
      Z
      zhhm156
    • how to import c4d on my python project

      Hi guy:
      i am a new python learner but i have no idea how to install c4d python sdk.I have found some information about python tutorials,however it said "no module named c4d" when i import C4D in my PyCharm, my C4D version is R19 and python version is 3.7,could anyone tell me how to solve this?

      posted in Cinema 4D SDK r19 python
      Z
      zhhm156
    • Free all BaseObject

      I have a question about clean all baseobjects within document.There were many Baseobjects using Baseobject::Alloc() to achieve and put into Basedocument. If I use Basedocument::Free() to clean all info,Is it necessarily that all objects were destoryed using baseobject::Free() within doc one by one?

      posted in Cinema 4D SDK c++
      Z
      zhhm156
    • Failed to Connection on TeamRender

      I am making a Team Render plugin in LAN,And i successed to use the API "GetAllMachineUuids" collecting other machine's Uid,but then it was failed to verify these machines using "VerifyServerOnClient",I don't know where the error gave rise to this problem on my code ,Could anyone show me the example of connection in Team Render using "VerifyServerOnClient"?

      posted in Cinema 4D SDK c++ r19 sdk
      Z
      zhhm156
    • question about Team Render

      I am making a Team Render plugin in LAN,And i successed to use the API "GetAllMachineUuids" collecting other machine's Uid,but then it was failed to verify these machines using "VerifyServerOnClient",I don't know where the error gave rise to this problem on my code ,Could anyone show me the example of connection in Team Render?

      my part of code:

      if (TeamRender::GetInstance()->NetRender != nullptr)
      {
      	maxon::BaseArray<C4DUuid> MachineArrayUuids;
      	TeamRender::GetInstance()->NetRender->GetAllMachineUuids(MachineArrayUuids, MACHINELIST_ONLINE, VERIFICATIONBIT::VERIFICATIONBIT_SHARED, false, true);
      	for(int i = 0;i < MachineArrayUuids.GetCount(); i++)
      	{
      		Machine* _machine = TeamRender::GetInstance()->NetRender->FindMachine(MachineArrayUuids[i], MACHINELIST_ONLINE, VERIFICATIONBIT_VERIFIED);
      		TeamRender::GetInstance()->NetRender->VerifyServerOnClient(THREADMODE_ASYNC, MachineArrayUuids[i],"175",false,false,30000);
      		GePrint(_machine->GetName());
      		machine = _machine->GetNext();
      	}
      }
      
      posted in Cinema 4D SDK
      Z
      zhhm156