Cocos Creator 3.6 API Document

Welcome to the Cocos Creator API Documentation!

Please note that after years of rapid development, there are significant differences in usage between Cocos Creator 3.x and Cocos Creator 2.x, and their APIs are not fully compatible. Therefore, when developers consult documentation, APIs, and tutorials, please pay attention to distinguish whether the target version is 2.x or 3.x to avoid errors due to version inconsistency. In the top-left corner, you can choose the corresponding API documentation version based on the Cocos Creator version you are using.

If you have any feedback on this document, please raise an issue at GitHub, or send us an email via docs@cocos.com.

Overview

  • 2D Rendering
    2D rendering related components and assets
  • 3D Rendering
    3D rendering related components and assets
  • Scene Graph
    The game is composed of various scenes, and the scenes are composed of nodes. The nodes are organized in a tree-like relationship, and each node can have multiple children.
  • Core
    Cocos Creator core functionalities.
  • Animation
    Cocos Creator has a built-in universal animation system for implementing keyframe-based animations. In addition to standard moving, rotation, scaling and frame animations, it also supports arbitrary component properties and user-defined property drivers, plus arbitrary time curves and innovative trajectory editing, allowing content producers to create detailed dynamic effects without writing a single line of code.
  • Audio
    Music is an integral part of a game, and good music makes a game more realistic and immersive. the audio system in Cocos Creator supports importing and playing most common audio file formats
  • Math
    Mathematical library, including vector and matrix operations in two dimensions and three dimensions, also including some other mathematic related classes.
  • GFX
    Graphical backend abstraction classes for unifying APIs of different rendering backends
  • Asset
    Assets are crucial for game content, Cocos Creator supports importing various types of assets and allows developers to use these resources in the game logic in runtime
  • Render Pipeline
    RenderPipeline is used to control the rendering process of a scene, including lighting management, object culling, render object sorting, render target switching, etc. Since each stage can be handled differently and optimized for different projects, it is difficult to achieve optimal results with one uniform rendering process for different types of projects. The customizable render pipeline is used to provide more flexible control over each stage in the rendering process, allowing for deeper optimization solutions for different projects.
  • Input System
    The input system is the bridge between the player and the game, through the input system, the developer can get all the actions of the player on the device and make the corresponding feedback
  • Native Interface
    This module provides JavaScript interface bound from native, including file, reflection interface etc.
  • DragonBones
    The ArmatureDisplay component can render and play DragonBones assets.
  • Physics System 2D
    2D version of the physics system, used to simulate physics in a 2D world
  • Particle System 2D
    2D version of the particle system for developing effects in the 2D world
  • Particle System
    The particle system is the basis of the game engine's special effects. It can be used to simulate natural phenomena such as fire, smoke, water, clouds, snow, and fallen leaves. It can also be used to simulate abstract visual effects such as luminous tracks and speed lines.
  • Physics System
    The physics system is used to allow objects in the game world to be simulated and updated in accordance with the real world based on physics, which is extremely important to enhance the realism of the game.
  • Primitive
    Some parametric generated primitive
  • Profiler
    Used to observe game runtime performance information
  • Spine
    The Spine Skeleton components support the data format exported by the official Spine tools, and renders and plays Spine assets.
  • Terrain
    The terrain system displays the mountainous landscape of nature in an efficient way. Developers can easily use a brush to sculpt basins, mountains, valleys, plains and other landforms.
  • Tiled Map
    TiledMap is used to display a map in TMX format in the game.
  • Tween
    Tween system is simpler API-level animation system for changing the properties of an object over a period of time
  • UI
    The powerful and flexible UI (User Interface) system in Cocos Creator. By assembling different UI components to produce UI interfaces that can be adapted to multiple screen resolutions, dynamically generate and update display content from data, and support multiple layout styles.
  • Video
    VideoPlayer is a component for playing videos, you could use this component for playing local video and remote videos.
  • WebView
    WebView is a component for displaying web pages, you could use this component to embed a mini web browser in your games. Because different platforms have different authorization, API and control methods for WebView component. And have not yet formed a unified standard, only Web, iOS, and Android platforms are currently supported.