You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: en/CONTRIBUTING.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -264,7 +264,7 @@ Appropriate spaces can be reserved before and after for easy editing.
264
264
- At present, —> Currently,
265
265
- Related Reference Links —> Reference documentation
266
266
- do not use phrases like: "Now let me explain", "he should do this"
267
-
- text like this should be avoided: "If you have never written a program and don’t worry, we will provide all the required code in the tutorial, just copy and paste it to the correct location, and then you can find your programmer partner to solve this part of the work. Let's start creating the script that drives the main character's actions."
267
+
- text like this should be avoided: "If you have never written a program and don’t worry, we will provide all the required code in the tutorial, just copy and paste it to the correct location, and then find your programmer partner to solve this part of the work. Let's start creating the script that drives the main character's actions."
Auxiliary conversion functions are not part of the abstraction layer (`Script Engine Wrapper`), they belong to the Cocos2D-X binding layer and are encapsulated to facilitate more convenient conversion in the binding code.
897
897
Each conversion function returns the type `bool` indicating whether the conversion was successful or not. Developers need to check the return value after calling these interfaces.
898
898
899
-
You can know the specific usage directly according to interface names. The first parameter in the interface is input, and the second parameter is the output parameter. The usage is as follows:
899
+
The specific usage is directly known according to interface names. The first parameter in the interface is input, and the second parameter is the output parameter. The usage is as follows:
Copy file name to clipboardexpand all lines: en/advanced-topics/engine-customization.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ If you only need to customize the engine functionality of the web version of the
15
15
16
16
### 1.1 Get the TypeScript engine
17
17
18
-
You can modify the engine based on the one built in Cocos Creator 3.0 if you just need to make some adjustments based on the current version. Click the **App** button at the top right of the Creator editor, and then copy the built-in `engine` directory to another local path.
18
+
It is possible to modify the engine based on the one built in Cocos Creator 3.0 to make some adjustments based on the current version. Click the **App** button at the top right of the Creator editor, and then copy the built-in `engine` directory to another local path.
@@ -62,15 +62,15 @@ If you need to customize the engine features related to the native platform, you
62
62
63
63
### 2.1 Get the engine-native Engine
64
64
65
-
If you only need to make some tweaks based on the current version, you can modify the **engine-native** engine built into Cocos Creator 3.0. The procedure is the same as for the TypeScript engine, click the **App** button at the top right of the Creator editor, then copy the built-in `cocos2d-x-lite` directory to another local path.
65
+
If you only need to make some tweaks based on the current version, modify the **engine-native** engine built into Cocos Creator 3.0. The procedure is the same as for the TypeScript engine, click the **App** button at the top right of the Creator editor, then copy the built-in `cocos2d-x-lite` directory to another local path.
66
66
67
67
To get the latest official version in development, download or clone it from the GitHub repository specified above. Similar to the TypeScript engine, the **engine-native** engine should be checked for the current branch before use.
68
68
69
69
### 2.2 Initialization
70
70
71
71
After downloading or cloning the **engine-native** engine repository, go to the engine path at the command line and execute the following command:
72
72
73
-
> **Note**: if you copied the built-in `cocos2d-x-lite` directory from the editor, you can skip this step.
73
+
> **Note**: if you copied the built-in `cocos2d-x-lite` directory from the editor, skip this step.
74
74
75
75
```bash
76
76
# Go to the engine-native engine path at the command line
Copy file name to clipboardexpand all lines: en/advanced-topics/hot-update-manager.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ The hot update mechanism essentially downloads the required assets from the serv
12
12
2. The browser requests a web page to cache its content locally
13
13
3. When the browser re-request this page, it will query the version on server version by the last modified time (Last-Modified) or unique identification (Etag). If these two value are different, then download a new file to update the local cache, if not, continue to use the cache.
14
14
15
-
The browser cache mechanism is more complex than the above description, but we can use similar basic idea. For game assets, you can also keep a copy of complete assets on the asset server. The client compare the version list with the server during updates, and download the different files and replace the cache. For the rest continues to use the client version or the cached file. So here's what we need to update the game:
15
+
The browser cache mechanism is more complex than the above description, but we can use similar basic idea. For game assets, it is possible to keep a copy of complete assets on the asset server. The client compare the version list with the server during updates, and download the different files and replace the cache. For the rest continues to use the client version or the cached file. So here's what we need to update the game:
16
16
17
17
1. The server keeps the latest version of all the game assets (the developer can update the server at any time)
18
18
2. The client sends request to get the asset different file list compare to server version
@@ -59,13 +59,13 @@ The manifest file is a json format that we use to compare local and remote asset
59
59
60
60
The manifest files can be generated by using the [Version generator script](https://github.com/cocos-creator/tutorial-hot-update/blob/master/version_generator.js) in the hot update example.
61
61
62
-
It is important to note that the remote information (including `packageUrl`, `remoteVersionUrl`, `remoteManifestUrl`) is for the remote package. That is, the `manifest` only takes effect when installed or downloaded with a local package. (you can also update the remote package url during version update). In addition, `md5` key is only for file identification so you can use other algorithm or rule to generate the file identification, such as modified date. When client compare `manifest` with the remote version, as long as the md5 information is different, we think this file has changed.
62
+
It is important to note that the remote information (including `packageUrl`, `remoteVersionUrl`, `remoteManifestUrl`) is for the remote package. That is, the `manifest` only takes effect when installed or downloaded with a local package. It is possible to also update the remote package url during version update. In addition, `md5` key is only for file identification, it is necessary, use other algorithm or rule to generate the file identification, such as modified date. When client compare `manifest` with the remote version, as long as the md5 information is different, we think this file has changed.
63
63
64
64
### The difference between the assets in the project and the published package
65
65
66
66
Everyone in the creation of a Cocos Creator project, you can see it catalog under the assets of the catalog, which saved your scenes, scripts, prefab, etc., corresponding to the editor in the assets of the panel. But these engineering assets are not the same as the packaged assets, in the use of building a building to build the original version, we will find the directory to find res and src folder, these two folders are saved really let the game run up Of the game package within the assets. Where src contains all the scripts, res contains all the assets.
67
67
68
-
So our asset hot update should naturally update the built assets, not the project's assets directory.
68
+
The asset hot update should naturally update the built assets, not the project's assets directory.
69
69
70
70
### Package assets, local cache assets and temporary assets
Copy file name to clipboardexpand all lines: en/advanced-topics/hot-update.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ Please be aware that **hot update system is for native games only**, since Web g
20
20
21
21
## Manifest file
22
22
23
-
For different versions of file-level differences, AssetsManager uses a manifest file for version control. The client and server manifest files each contains an asset file list and version for each file. So that you can compare the version of each file to determine whether we should download a file.
23
+
For different versions of file-level differences, AssetsManager uses a manifest file for version control. The client and server manifest files each contains an asset file list and version for each file. This allows comparing the version of each file to determine whether a file should be downloaded.
24
24
25
25
The manifest file contains the following important information:
26
26
@@ -31,7 +31,7 @@ The manifest file contains the following important information:
31
31
5. File list: index of file pathes, including file version information. We recommend using the file md5 as the version number
32
32
6. List of search path.
33
33
34
-
The version file can be part of the contents of the manifest file and do not contain a list of files. But the manifest file may be large, each time client need to download the whole file for checking version update. So developer can provide a very small version file for version check only. `AssetsManager` will first check the version number provided by the version file to determine if you need to continue downloading the manifest file and update it.
34
+
The version file can be part of the contents of the manifest file and do not contain a list of files. But the manifest file may be large, each time client need to download the whole file for checking version update. So developer can provide a very small version file for version check only. `AssetsManager` will first check the version number provided by the version file to determine if it is necessary to continue downloading the manifest file and update it.
35
35
36
36
## Implement hot update in the Cocos Creator project
37
37
@@ -77,15 +77,15 @@ In addition, the sample project is also equipped with a `Scene/Canvas/update` no
77
77
78
78
### Deploy to remote server
79
79
80
-
In order to allow the game to detect remote versions, you can simulate a remote server on the machine, there are a variety of server solutions (such as [SimpleHTTPServer](https://docs.python.org/2/library/simplehttpserver.html) for Python). We will not discuss detail here, developers can use their own prefered way. Once your remote server is up, you need to modify the following places to allow the game to successfully find the remote package:
80
+
In order to allow the game to detect remote versions, it is possible to simulate a remote server on the machine, there are a variety of server solutions (such as [SimpleHTTPServer](https://docs.python.org/2/library/simplehttpserver.html) for Python). We will not discuss detail here, developers can use their own prefered way. Once the remote server is up, modify the following places to allow the game to successfully find the remote package:
81
81
82
82
1.`assets/project.manifest`: `packageUrl`, `remoteManifestUrl` and `remoteVersionUrl` in the client manifest file of the game
83
83
2.`remote-assets/project.manifest`: `packageUrl`, `remoteManifestUrl` and `remoteVersionUrl` in the manifest file of the remote package
84
84
3.`remote-assets/version.manifest`: `packageUrl`, `remoteManifestUrl` and `remoteVersionUrl` in the remote package's version file
85
85
86
86
### Publish the original version
87
87
88
-
After downloading the sample project, you can use Cocos Creator to open the project directly. Open **Build** panel, build for native platform, you can choose Windows / Mac as target to test.
88
+
After downloading the sample project, use Cocos Creator to open the project directly. Open **Build** panel, build for native platform, choose Windows / Mac as the target to test.
89
89
90
90
**Note:**
91
91
-1. Do not check MD5 Cache when building, otherwise it will cause the hot update to be invalid.
@@ -132,11 +132,11 @@ The editor plugin automatically adds the search path logic and fix code to `main
132
132
133
133
This step must be done because the essence of the hot update is to replace the files in the original game package with a remotely downloaded file. Cocos2d-x search path just meet this demand, it can be used to specify the remote package download url as the default search path, so the game will run the process of downloading a good remote version. In addition, the search path is used in the last update process using `localStorage` (which conforms to the WEB standard [Local Storage API](https://developer.mozilla.org/en/docs/Web/API/Window/localStorage)) to store on the user's machine. The `HotUpdateSearchPaths` key is specified in `HotUpdate.js`, and the name used for the save and read process must match.
134
134
135
-
In addition, if you encounter this warning during the opening of the project, you can ignore: `loader for [.manifest] not exists!`.
135
+
In addition, if encountering this warning during the opening of the project, ignore: `loader for [.manifest] not exists!`.
136
136
137
137
### Run the example project
138
138
139
-
If everything is alright, you can run the native version of the sample project. You will encounter a new version detected, suggesting that the update will automatically restart the game after the game, then enter the table scene.
139
+
If everything is alright, run the native version of the sample project. A new version will be detected, suggesting that the update will automatically restart the game after the game, then enter the table scene.
Copy file name to clipboardexpand all lines: en/animation/animation-editor.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -139,7 +139,7 @@ The properties of the current Animation Clip that can be set directly on the **A
139
139
140
140
## Adjusting the Layout of the Animation Panel
141
141
142
-
The dividers between the node list and the timeline, and between the property list and the timeline are available for dragging and dropping to change the layout. By dragging and dropping you can freely adjust the **Animation** panel to a layout effect suitable for editing.
142
+
The dividers between the node list and the timeline, and between the property list and the timeline are available for dragging and dropping to change the layout. By dragging and dropping it is possible to freely adjust the **Animation** panel to a layout effect suitable for editing.
Copy file name to clipboardexpand all lines: en/animation/edit-animation-clip.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,7 @@ In addition to adding keyframes by modifying properties as described in **Creati
82
82
83
83
1. Select the keyframe to be deleted (multiple selections are allowed) and press <kbd>Delete</kbd> (Windows) or <kbd>Cmd</kbd> + <kbd>Backspace</kbd> (macOS).
84
84
85
-
2. Select the keyframe you want to delete (you can select more than one), then right click and select **Remove Keyframe** in the popup menu.
85
+
2. Select the keyframe you want to delete (select more than one), then right click and select **Remove Keyframe** in the popup menu.
86
86
87
87
3. Drag the time control line to the position of the keyframe to be removed or **double-click** the keyframe, and then click  button to the right of the corresponding animation property.
88
88
@@ -161,7 +161,7 @@ Copy and paste of node animation data, supports cross-editor (v3.x) usage.
161
161
162
162
### Edit child node data with the same name
163
163
164
-
When editing animation data in the animation clip of the parent node, you can also edit the animation data of the child nodes. The animation data will all be saved in the animation clip of the parent node, which is used to achieve effects like moving the hands of the character model with different speeds along with the body, etc. However, if the parent node contains more than one child node with the same name at the same time, only the first child node with the same name will be edited, and the other nodes with the same name will be grayed out to uneditable state.
164
+
When editing animation data in the animation clip of the parent node, it is possible to also edit the animation data of the child nodes. The animation data will all be saved in the animation clip of the parent node, which is used to achieve effects like moving the hands of the character model with different speeds along with the body, etc. However, if the parent node contains more than one child node with the same name at the same time, only the first child node with the same name will be edited, and the other nodes with the same name will be grayed out to uneditable state.
- Remove property track: remove the currently selected animation property, including all keyframes on that property track. Or you can also use the shortcut <kbd>Delete</kbd> key (Windows) or <kbd>Cmd</kbd> + <kbd>Backspace</kbd> (macOS).
176
+
- Remove property track: remove the currently selected animation property, including all keyframes on that property track. Or use the shortcut <kbd>Delete</kbd> key (Windows) or <kbd>Cmd</kbd> + <kbd>Backspace</kbd> (macOS).
177
177
178
178
- Clear keyframe data: delete all keyframes on the currently selected animation property track.
Copy file name to clipboardexpand all lines: en/animation/index.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Cocos Creator has a built-in universal animation system for implementing keyfram
4
4
5
5

6
6
7
-
> **Note**: the **Animation** panel that comes with Cocos Creator is suitable for creating less complex animations that need to be linked with logic, such as UI animations. If you want to create complex effects, character animations, nested animations, etc., you can consider using Spine, DragonBones or skeletal animation editor for 3D models instead.
7
+
> **Note**: the **Animation** panel that comes with Cocos Creator is suitable for creating less complex animations that need to be linked with logic, such as UI animations. If you want to create complex effects, character animations, nested animations, etc., consider using Spine, DragonBones or skeletal animation editor for 3D models instead.
0 commit comments