# 新手引導步驟模板 #
## 顯示遮罩 挖空建造按鈕 ##
```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>
```