This commit is contained in:
Xingwei Zhu 2021-04-23 18:02:52 +08:00
Родитель 309f21553d
Коммит 999afaee88
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -184,12 +184,12 @@ UIWidgets应用是用**C脚本**来编写的。 请按照以下步骤创建
#### 五、如何加载图像?
1. 将你的图像文件如image1.png放在StreamingAssets文件夹中。
2. 使用Image.File“image1.png”加载图像。
2. 使用Image.file("image1.png")加载图像。
UIWidgets也支持Gif
1. 假设你有一个loading1.gif文件复制到StreamingAssets文件夹。
2. 使用Image.file“loading1.gif”加载gif图像。
2. 使用Image.file("loading1.gif")加载gif图像。
#### 六、在安卓上显示状态栏
当一个Unity项目运行在Android设备上时状态栏是默认隐藏且无法在编辑内进行调整的。

Просмотреть файл

@ -199,7 +199,7 @@ all relevant resources and generate the final App package.
UIWidgets supports Gif as well!
1. Put your gif files in StreamingAssets folder. e.g. loading1.gif.
2. Use Image.asset("loading1.gif") to load the gif images.
2. Use Image.file("loading1.gif") to load the gif images.
#### Show Status Bar on Android
Status bar is always hidden by default when an Unity project is running on an Android device.