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
    • Register
    • Login

    Forum Features

    News & Information
    information forum
    1
    1
    820
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • maxonM
      maxon
      last edited by ferdinand

      Dear Community,

      This posting contains information on how to write postings and upload data to the forum on a technical level.

      See our Forum Overview topic for an overview the forum structure and our code of conduct. The Support Procedures topic lines out how we deliver support, which topics are within the scope of support, and the hallmarks of a good technical question.

      Basics

      Creating Topics

      A new topic can be created with the New Topic button to be found at the top of each sub-forum (Fig. I).
      14bfb369-9248-4ae1-95c9-d128265ea2ce-image.png
      Fig. I: The New topic button can be found in each forum into which you can post, the button not being present means that you are not allowed to create topics in this forum.

      Changing Forums

      After pressing the button, the posting editor will open. When creating a new topic, the editor will allow you to change the forum to post into with a button in the top left (Fig. II).
      1213a9e6-6ea8-4ceb-94e9-b8b256bf0188-image.png
      Fig. II: The category button can be found in the top left of the posting editor when creating a new topic.

      Adding Tags

      Many forums allow you or even require you to add tags to your posting. The tags button can be found in the left bottom of the posting editor (Fig. III).

      bf13214d-7292-4e3e-9029-0102f9a29c52-image.png
      Fig. III: The tags button allows you to descibe a posting with predefined tags.

      You should always describe the language (C++/Python), the operating system (Windows/MacOS), and the version you are targeting.

      Forum Markup

      This is an overview of all forum markup and its rendered output.


      Uploading Content

      You can upload images and files to the forum as shown below.
      3456a82b-573b-4856-9773-49ac8b0cabca-image.png
      eddd65e1-e1c0-4a42-908f-069ea4571f45-image.png

      The maximum upload size is 16 MB and the supported file formats are:

      • Image: png, jpg, bmp, gif, webm
      • File: zip, py, pyp, pdf, txt, cpp, h, vdb, mp4

      Uploaded mp4 files will be automatically displayed in a video player. You also can embed Youtube, Vimeo, and Twitter content by simply posting a link in a topic.


      Emphasis

      *italic* italic
      **bold** bold
      ~~strikethrough~~ strikethrough
      [Link](https://www.google.com/) Link
      `monospace` monospace

      Lists

      Bullet point and index lists can be mixed, the actual numbering in index lists does not matter, it will be applied by the parser (Beans has the index 6 in the markup but is then correctly rendered as 2).

      * Food
        * Fruits
          1. Apple
          2. Avocado
          3. Banana
        * Vegetables
          1. Aubergine
          6. Beans
          3. Carrot
      * Toys
      
      • Food
        • Fruits
          1. Apple
          2. Avocado
          3. Banana
        • Vegetables
          1. Aubergine
          2. Beans
          3. Carrot
      • Toys

      Code Blocks

      Code blocks can be styled with a sytanx. [py] will force Python syntax, [cpp] C++ syntax, and [txt] no syntax (among many other syntaxes). Setting no syntax hint will cause the styling to fall back to Python syntax.

      9678-950d-4455-a6bc-46edf5356b60-image.png

      class Item (object):
          """Blah
          """
          def __init__(self, *args, **kwargs) -> None:
              self.id: int = 0
              self.name: str = ""
      
          def run(self) -> str:
              return f"My name is {self.name} at {self.id}."
          
      # Create an item and run it.
      thing: Item = Item()
      thing. Run()
      

      121c6501-feec-450e-8425-dd0b2147a062-image.png

      class Foo {   // A class
        public:
          int bar;
      };
      

      Quotes and Tables

      > “Not every quote you read on the internet is true.” – Abraham Lincoln

      “Not every quote you read on the internet is true.” – Abraham Lincoln

      | A | B | C | 
      | - | - | - |
      | 1 | 2 | 3 | 
      | 4 | 5 | 6 | 
      
      A B C
      1 2 3
      4 5 6

      Headings and Seperators

      # h1 title
      ## h2 title
      ### h3 title
      #### h4 title
      ##### h5 title
      ###### h6 title
      ---
      

      h1 title

      h2 title

      h3 title

      h4 title

      h5 title
      h6 title

      Happy posting,
      the Maxon SDK Group

      This topic deliberately has been left open for on-topic questions. Due to the informative nature of this topic, it will be strictly moderated.

      1 Reply Last reply Reply Quote 0
      • First post
        Last post