# 新手引导步骤模板 #
## 显示遮罩 挖空建造按钮 ##
```xml
<step type="show_overlay">
<position horizontal="strict" vertical="relative">
<x>400</x>
<bottom>35</bottom>
</position>
<appearance>
<radius>0</radius>
<width>75</width>
<height>75</height>
</appearance>
<time>400</time>
<testNode>显示遮罩 挖空建造按钮</testNode>
</step>
```
## 镜头移到指挥中心 显示遮罩 并显示箭头
```xml
<step type="camera_tween">
<logic_tick>0</logic_tick>
<position horizontal="strict" vertical="strict">
<x>0</x>
<y>-500</y>
</position>
<time>400</time>
<skip>false</skip>
<typeName>镜头缓动</typeName>
<testNode>镜头缓动</testNode>
</step>
<step type="show_overlay">
<position horizontal="center" vertical="center">
<h_center>120</h_center>
<v_center>-200</v_center>
</position>
<appearance>
<radius>120</radius>
<width>0</width>
<height>0</height>
</appearance>
<time>400</time>
<typeName>显示遮罩</typeName>
<testNode>显示遮罩</testNode>
</step>
<step type="show_pointer">
<position horizontal="center" vertical="center">
<h_center>130</h_center>
<v_center>-70</v_center>
</position>
<pointer_align>bottom</pointer_align>
<typeName>显示箭头</typeName>
<testNode>显示箭头</testNode>
</step>
```
## 显示遮罩挖空主线按钮 显示箭头
```xml
<step type="show_overlay">
<position horizontal="strict" vertical="strict">
<x>45</x>
<y>255</y>
</position>
<appearance>
<radius>45</radius>
<width>0</width>
<height>0</height>
</appearance>
<time>400</time>
<testNode>显示遮罩 挖空主线任务</testNode>
</step>
<step type="show_pointer">
<position horizontal="strict" vertical="strict">
<x>80</x>
<y>255</y>
</position>
<pointer_align>right</pointer_align>
<testNode>显示箭头指向主线任务</testNode>
</step>
```
