This page has been translated automatically.
视频教程
界面
要领
高级
实用建议
专业(SIM)
UnigineEditor
界面概述
资源工作流程
版本控制
设置和首选项
项目开发
调整节点参数
Setting Up Materials
设置属性
照明
Sandworm
使用编辑器工具执行特定任务
如何擴展編輯器功能
嵌入式节点类型
Nodes
Objects
Effects
Decals
光源
Geodetics
World Nodes
Sound Objects
Pathfinding Objects
Players
编程
基本原理
搭建开发环境
使用范例
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Plugins
File Formats
材质和着色器
Rebuilding the Engine Tools
GUI
双精度坐标
应用程序接口
Animations-Related Classes
Containers
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
VR-Related Classes
创建内容
内容优化
材质
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Tutorials

升级脚本

UNIGINE upgrade script is a one-touch solution to upgrade data of a UNIGINE-based project to be consistent with updated engine builds. UNIGINE升级脚本是一种一键式解决方案,用于升级基于UNIGINE的项目的数据以使其与更新的引擎版本保持一致。

The script recursively scans the project folders inside the data folder to upgrade the files located there. If the script fails to upgrade some files, it will generate an error log (errors.log file).该脚本以递归方式扫描data文件夹内的项目文件夹,以升级位于该文件夹中的文件。如果脚本无法升级某些文件,则会生成错误日志(errors.log文件)。

注意
The same upgrade script is run when upgrading projects via UNIGINE SDK Browser.通过 UNIGINE SDK浏览器升级项目时,将运行相同的升级脚本。

Usage用法#

The script is located in utils/upgrade directory of UNIGINE SDK.脚本位于UNIGINE SDK的utils/upgrade目录中。

注意
You need to properly set the development environment to get the script working.您需要正确设置开发环境才能使脚本正常工作。

To invoke the upgrade script, run upgrade.usc at the command prompt by using USC Interpreter:要调用升级脚本,请使用upgrade.usc at the command prompt by using USC Interpreter:

命令行
usc_x* upgrade.usc DIRS OPTIONS
  • If the content to be upgraded is stored only in the project's data folder, specify the path to this folder:
    命令行
    usc_x* upgrade.usc PATH_TO_DATA OPTIONS
    You can also specify only a particular folder inside the data folder, if necessary.
    如果要升级的内容仅存储在项目的data文件夹中,请指定此文件夹的路径:
    命令行
    usc_x* upgrade.usc PATH_TO_DATA OPTIONS
    如果需要,还可以仅在data文件夹内指定一个特定的文件夹。
  • If the content to be upgraded is stored outside the data folder, you can specify the corresponding folders for the upgrade script:
    命令行
    usc_x* upgrade.usc DIR_0 DIR_1 OPTIONS
    如果要升级的内容存储在data文件夹之外,则可以为升级脚本指定相应的文件夹:
    命令行
    usc_x* upgrade.usc DIR_0 DIR_1 OPTIONS
注意
If you need to upgrade several projects, you should run the upgrade script for each of them separately.如果需要升级多个项目,则应分别为每个项目运行升级脚本。

Command Line Options命令行选项#

The upgrade script recognizes the following command line options:升级脚本可识别以下命令行选项:

  • --log - a path to the log file. If the option isn't specified, the log will be printed to the command prompt only. -log -日志文件的路径。如果未指定该选项,则日志将仅打印到命令提示符。

If no options are set, the script will start upgrading with the default values.如果未设置任何选项,则脚本将使用默认值开始升级。

Examples例子#

  • To upgrade content of a UNIGINE-based project located in D:\my_project directory, type at the command prompt:
    命令行
    usc_x64 upgrade.usc D:\my_project\data
    要升级位于D:\my_project目录中的基于UNIGINE的项目的内容,请在命令提示符下键入:
    命令行
    usc_x64 upgrade.usc D:\my_project\data
  • To run content upgrading of a UNIGINE-based project and save the log data into a file, run the upgrade script as follows:
    命令行
    usc_x64 upgrade.usc  D:\my_project\data --log D:\my_project\log.html
    要运行基于UNIGINE的项目的内容升级并将日志数据保存到文件中,请按以下方式运行升级脚本:
    命令行
    usc_x64 upgrade.usc  D:\my_project\data --log D:\my_project\log.html
最新更新: 2020-11-11
Build: ()