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. Viktor Velicko
    V
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 3
    • Best 0
    • Controversial 0
    • Groups 0

    Viktor Velicko

    @Viktor Velicko

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

    Viktor Velicko Unfollow Follow

    Latest posts made by Viktor Velicko

    • maxon::String Fails to Display "º" in Control Name

      Hi guys,
      I'm having an issue creating attribute panel control names that include the degree symbol "º".
      For example, when creating a button control with the following Maxon string:


      Example A (works):

      const char* name_char = "Slope 90";
      maxon::String name_maxon(name_char);


      Example B (fails – button name is blank):

      const char* name_char = "Slope 90º";
      maxon::String name_maxon(name_char);


      The name_char variable is just for testing purposes. In the actual application, the string is read from the file system.
      The name_maxon string is then used to set the control name in the attribute panel.

      Any ideas why the degree symbol causes the control name to appear blank?

      Thanks!

      posted in Cinema 4D SDK c++ windows
      V
      Viktor Velicko
    • RE: Base Object - Attributes : Enabled parameter

      @cairyn
      Thanks!
      It works.
      So useful console trick!

      posted in Cinema 4D SDK
      V
      Viktor Velicko
    • Base Object - Attributes : Enabled parameter

      Hi,
      Stupid question but I am not able to find a way to read the Enabled parameter from Base Objects Attributes panel.

      other parameters as ID_BASEOBJECT_VISIBILITY_EDITOR, D_BASEOBJECT_VISIBILITY_RENDER
      works fine as listed in obase.h

      Enabled parameter is below Visible in Editor & Render in the panel.
      But it is not listed in obase.h.

      VUhEOMkLOURqYr3e.png

      posted in Cinema 4D SDK
      V
      Viktor Velicko