Skip to content

Commit 344606c

Browse files
slackmoehrlexunyi0
andauthored
(part 1) En fixes as reviewing (cocos#1829)
* so, you can...removal * continued language fixes * Update en/advanced-topics/hot-update-manager.md Co-authored-by: yufang.wu <[email protected]> * Update en/asset/downloader-parser.md Co-authored-by: yufang.wu <[email protected]> * Update en/index.md Co-authored-by: yufang.wu <[email protected]> * Update en/animation/animation-editor.md Co-authored-by: yufang.wu <[email protected]>
1 parent 32092b7 commit 344606c

21 files changed

+59
-58
lines changed

en/CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ Appropriate spaces can be reserved before and after for easy editing.
264264
- At present, —> Currently,
265265
- Related Reference Links —> Reference documentation
266266
- 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."
268268
- text like this should be avoided: "So, "
269269
270270
## About product name

en/advanced-topics/JSB2.0-learning.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ se::Object* globalObj = se::ScriptEngine::getInstance()->getGlobalObject(); // W
412412
globalObj->setProperty("foo", se::Value(100)); // Set a property called `foo` with a value of 100 to the global object.
413413
```
414414

415-
Then, you can use the `foo` global variable in JS directly.
415+
Next, use the `foo` global variable in JS directly.
416416

417417
```js
418418
cc.log("foo value: " + foo); // Print `foo value: 100`.
@@ -686,7 +686,7 @@ static bool js_SomeClass_setCallback(se::State& s)
686686
SE_BIND_FUNC(js_SomeClass_setCallback)
687687
```
688688

689-
After SomeClass is registered, you can use it in JS like the following:
689+
After SomeClass is registered, use it in JS like the following:
690690

691691
```js
692692
var myObj = new ns.SomeClass();
@@ -896,7 +896,7 @@ bool b2AABB_to_seval(const b2AABB& v, se::Value* ret);
896896
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.
897897
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.
898898

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:
900900

901901
```c++
902902
se::Value v;

en/advanced-topics/engine-customization.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ If you only need to customize the engine functionality of the web version of the
1515

1616
### 1.1 Get the TypeScript engine
1717

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.
1919

2020
![open-engine](engine-customization/open-engine.png)
2121

@@ -62,15 +62,15 @@ If you need to customize the engine features related to the native platform, you
6262

6363
### 2.1 Get the engine-native Engine
6464

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.
6666

6767
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.
6868

6969
### 2.2 Initialization
7070

7171
After downloading or cloning the **engine-native** engine repository, go to the engine path at the command line and execute the following command:
7272

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.
7474
7575
```bash
7676
# Go to the engine-native engine path at the command line

en/advanced-topics/hot-update-manager.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The hot update mechanism essentially downloads the required assets from the serv
1212
2. The browser requests a web page to cache its content locally
1313
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.
1414

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:
1616

1717
1. The server keeps the latest version of all the game assets (the developer can update the server at any time)
1818
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
5959

6060
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.
6161

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.
6363

6464
### The difference between the assets in the project and the published package
6565

6666
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.
6767

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.
6969

7070
### Package assets, local cache assets and temporary assets
7171

en/advanced-topics/hot-update.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Please be aware that **hot update system is for native games only**, since Web g
2020

2121
## Manifest file
2222

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.
2424

2525
The manifest file contains the following important information:
2626

@@ -31,7 +31,7 @@ The manifest file contains the following important information:
3131
5. File list: index of file pathes, including file version information. We recommend using the file md5 as the version number
3232
6. List of search path.
3333

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.
3535

3636
## Implement hot update in the Cocos Creator project
3737

@@ -77,15 +77,15 @@ In addition, the sample project is also equipped with a `Scene/Canvas/update` no
7777

7878
### Deploy to remote server
7979

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:
8181

8282
1. `assets/project.manifest`: `packageUrl`, `remoteManifestUrl` and `remoteVersionUrl` in the client manifest file of the game
8383
2. `remote-assets/project.manifest`: `packageUrl`, `remoteManifestUrl` and `remoteVersionUrl` in the manifest file of the remote package
8484
3. `remote-assets/version.manifest`: `packageUrl`, `remoteManifestUrl` and `remoteVersionUrl` in the remote package's version file
8585

8686
### Publish the original version
8787

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.
8989

9090
**Note:**
9191
- 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
132132

133133
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.
134134

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!`.
136136

137137
### Run the example project
138138

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.
140140

141141
![update](./hot-update/update.png)
142142

en/animation/animation-editor.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ The properties of the current Animation Clip that can be set directly on the **A
139139

140140
## Adjusting the Layout of the Animation Panel
141141

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.
143143

144144
![layout](./animation-editor/layout.gif)
145145

en/animation/animation-event.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Right-click on the added event frame and select **Edit** or double-click directl
3434

3535
![add animation event](animation-event/add-animation-event.png)
3636

37-
- 1 - add incoming parameters, you can choose the parameter type as needed.
37+
- 1 - add incoming parameters by choosing the parameter type as needed.
3838
- 2 - delete all the added incoming parameters below.
3939
- 3 - when the mouse moves over a parameter, this button will appear, click on it to delete the currently selected parameter.
4040

en/animation/animation-state.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Animation states are managed by [Class `AnimationState`](__APIDOC__/en/classes/a
66

77
## Setting the playback speed
88

9-
First you can get the animation state by [getState()](__APIDOC__/en/classes/animation.animation-1.html#getstate):
9+
First, get the animation state by [getState()](__APIDOC__/en/classes/animation.animation-1.html#getstate):
1010

1111
```ts
1212
// Get the Animation component

en/animation/edit-animation-clip.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ In addition to adding keyframes by modifying properties as described in **Creati
8282

8383
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).
8484

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.
8686

8787
3. Drag the time control line to the position of the keyframe to be removed or **double-click** the keyframe, and then click ![remove keyframe](edit-animation-clip/remove-key-btn.png) button to the right of the corresponding animation property.
8888

@@ -161,7 +161,7 @@ Copy and paste of node animation data, supports cross-editor (v3.x) usage.
161161
162162
### Edit child node data with the same name
163163

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.
165165

166166
![same-name node](edit-animation-clip/same-name-node.png)
167167

@@ -173,7 +173,7 @@ Right-click on the animation property or click ![property](edit-animation-clip/s
173173

174174
![property operation](edit-animation-clip/pro-operation.png)
175175

176-
- 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).
177177

178178
- Clear keyframe data: delete all keyframes on the currently selected animation property track.
179179

en/animation/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Cocos Creator has a built-in universal animation system for implementing keyfram
44

55
![animation cover](index/main.gif)
66

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.
88
99
## Content
1010

0 commit comments

Comments
 (0)