提交修改

This commit is contained in:
李浩 2025-04-03 13:22:58 +08:00
parent f504ace4c3
commit d3159edef7
12 changed files with 225 additions and 128 deletions

5
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"recommendations": [
"visualstudiotoolsforunity.vstuc"
]
}

10
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Unity",
"type": "vstuc",
"request": "attach"
}
]
}

60
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,60 @@
{
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.vs": true,
"**/.gitmodules": true,
"**/.vsconfig": true,
"**/*.booproj": true,
"**/*.pidb": true,
"**/*.suo": true,
"**/*.user": true,
"**/*.userprefs": true,
"**/*.unityproj": true,
"**/*.dll": true,
"**/*.exe": true,
"**/*.pdf": true,
"**/*.mid": true,
"**/*.midi": true,
"**/*.wav": true,
"**/*.gif": true,
"**/*.ico": true,
"**/*.jpg": true,
"**/*.jpeg": true,
"**/*.png": true,
"**/*.psd": true,
"**/*.tga": true,
"**/*.tif": true,
"**/*.tiff": true,
"**/*.3ds": true,
"**/*.3DS": true,
"**/*.fbx": true,
"**/*.FBX": true,
"**/*.lxo": true,
"**/*.LXO": true,
"**/*.ma": true,
"**/*.MA": true,
"**/*.obj": true,
"**/*.OBJ": true,
"**/*.asset": true,
"**/*.cubemap": true,
"**/*.flare": true,
"**/*.mat": true,
"**/*.meta": true,
"**/*.prefab": true,
"**/*.unity": true,
"build/": true,
"Build/": true,
"Library/": true,
"library/": true,
"obj/": true,
"Obj/": true,
"Logs/": true,
"logs/": true,
"ProjectSettings/": true,
"UserSettings/": true,
"temp/": true,
"Temp/": true
},
"dotnet.defaultSolution": "virtualframework.sln"
}

View File

@ -149,7 +149,7 @@ MonoBehaviour:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Material: {fileID: 0} m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1} m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1 m_RaycastTarget: 0
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1 m_Maskable: 1
m_OnCullStateChanged: m_OnCullStateChanged:

View File

@ -1314,7 +1314,7 @@ MonoBehaviour:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Material: {fileID: 0} m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1} m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1 m_RaycastTarget: 0
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1 m_Maskable: 1
m_OnCullStateChanged: m_OnCullStateChanged:

View File

@ -16,6 +16,16 @@ namespace QAssetBundle
public const string BundleName = "line_prefab"; public const string BundleName = "line_prefab";
public const string LINE = "Line"; public const string LINE = "Line";
} }
public class Pingfang_medium_sdf_asset
{
public const string BundleName = "pingfang medium sdf_asset";
public const string PINGFANG_MEDIUM_SDF = "PingFang Medium SDF";
}
public class Pingfangscmedium_sdf_asset
{
public const string BundleName = "pingfangsc-medium sdf_asset";
public const string PINGFANGSCMEDIUM_SDF = "PingFangSC-Medium SDF";
}
public class Ui3dbodyinfo_prefab public class Ui3dbodyinfo_prefab
{ {
public const string BundleName = "ui3dbodyinfo_prefab"; public const string BundleName = "ui3dbodyinfo_prefab";
@ -31,6 +41,11 @@ namespace QAssetBundle
public const string BundleName = "ui3dobjshow_prefab"; public const string BundleName = "ui3dobjshow_prefab";
public const string UI3DOBJSHOW = "UI3DObjShow"; public const string UI3DOBJSHOW = "UI3DObjShow";
} }
public class Uibackpack_prefab
{
public const string BundleName = "uibackpack_prefab";
public const string UIBACKPACK = "UIBackPack";
}
public class Uibody3d_prefab public class Uibody3d_prefab
{ {
public const string BundleName = "uibody3d_prefab"; public const string BundleName = "uibody3d_prefab";
@ -146,6 +161,11 @@ namespace QAssetBundle
public const string BundleName = "uitexttip_prefab"; public const string BundleName = "uitexttip_prefab";
public const string UITEXTTIP = "UITextTip"; public const string UITEXTTIP = "UITextTip";
} }
public class Uitextwindow_prefab
{
public const string BundleName = "uitextwindow_prefab";
public const string UITEXTWINDOW = "UITextWindow";
}
public class Uitimetip_prefab public class Uitimetip_prefab
{ {
public const string BundleName = "uitimetip_prefab"; public const string BundleName = "uitimetip_prefab";

View File

@ -2,20 +2,19 @@
<!--假死仔猪模块--> <!--假死仔猪模块-->
<Module> <Module>
<FSM name="pig1">
<FSM name="状态机1">
<State name="初始状态"> <State name="初始状态">
<Enter> <Enter>
<Action type="Parallel">
<!--房间墙壁 暂时隐藏-->
<Action type="Sequence"> <Action type="Sequence">
<Action type="UIShow" value="UIOperationList"></Action> <Action type="UIShow" value="UIOperationList"></Action>
<Action type="NextOperation"></Action> <Action type="NextOperation"></Action>
</Action> </Action>
</Action>
</Enter> </Enter>
</State> </State>
<Transision from="any" to="pig1初始状态">
</Transision>
</FSM> </FSM>
<Descript> <Descript>
@ -250,7 +249,7 @@
<!--初始化显示物体--> <!--初始化显示物体-->
<Action Action="" type="Show" value="ExamPrefab/Teach_ToolsChose" isShow="true"></Action> <Action type="Show" value="ExamPrefab/Teach_ToolsChose" isShow="true"></Action>
<Action type="Show" value="ExamPrefab/Teach_ModelChose" isShow="true"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose" isShow="true"></Action>
<!--模块显示--> <!--模块显示-->
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an2" isShow="true"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an2" isShow="true"></Action>
@ -320,7 +319,7 @@
<Action type="Sequence"> <Action type="Sequence">
<!--初始化显示物体--> <!--初始化显示物体-->
<Action Action="" type="Show" value="ExamPrefab/Teach_ToolsChose" isShow="true"></Action> <Action type="Show" value="ExamPrefab/Teach_ToolsChose" isShow="true"></Action>
<Action type="Show" value="ExamPrefab/Teach_ModelChose" isShow="true"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose" isShow="true"></Action>
<!--模块显示--> <!--模块显示-->
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an2" isShow="false"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an2" isShow="false"></Action>
@ -381,7 +380,7 @@
<Action type="Sequence"> <Action type="Sequence">
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an2" isShow="false"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an2" isShow="false"></Action>
<Action type="CameraSwitch" nearPos="1.48, 1.99, -2.30" nearRot="22.05, 60.00, 0.00" nearTime="0" normalPos="1.48, 1.99, -2.30" normalRot="22.05, 60.00, 0.00" normalTime="0" isOn="near"></Action> <Action type="CameraSwitch" nearPos="1.48, 1.99, -2.30" nearRot="22.05, 60.00, 0.00" nearTime="0" normalPos="1.48, 1.99, -2.30" normalRot="22.05, 60.00, 0.00" normalTime="0" isOn="normal"></Action>
<Action type="TextTip" title="假死仔猪的特征" value="①无自主呼吸:胸廓无起伏,口鼻无气流。\n②心跳微弱或停止触摸颈侧或心脏区域难以感知搏动。\n③肌肉松弛身体松软四肢下垂。\n④体温下降尤其环境低温时可能触感冰凉。\n⑤反射消失对光线、声音或触碰无反应瞳孔散大。\n⑥黏膜发绀嘴唇、牙龈因缺氧呈青紫色。" audio="Zhu/Z002.mp3" btns="确定"/> <Action type="TextTip" title="假死仔猪的特征" value="①无自主呼吸:胸廓无起伏,口鼻无气流。\n②心跳微弱或停止触摸颈侧或心脏区域难以感知搏动。\n③肌肉松弛身体松软四肢下垂。\n④体温下降尤其环境低温时可能触感冰凉。\n⑤反射消失对光线、声音或触碰无反应瞳孔散大。\n⑥黏膜发绀嘴唇、牙龈因缺氧呈青紫色。" audio="Zhu/Z002.mp3" btns="确定"/>
@ -410,7 +409,7 @@
<Action type="Sequence"> <Action type="Sequence">
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an2" isShow="false"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an2" isShow="false"></Action>
<Action type="CameraSwitch" nearPos="1.48, 1.99, -2.30" nearRot="22.05, 60.00, 0.00" nearTime="0" normalPos="1.48, 1.99, -2.30" normalRot="22.05, 60.00, 0.00" normalTime="0" isOn="near"></Action> <Action type="CameraSwitch" nearPos="1.48, 1.99, -2.30" nearRot="22.05, 60.00, 0.00" nearTime="0" normalPos="1.48, 1.99, -2.30" normalRot="22.05, 60.00, 0.00" normalTime="0" isOn="normal"></Action>
@ -425,6 +424,9 @@
<Action type="Sequence"> <Action type="Sequence">
<Action type="CameraSwitch" nearPos="1.48, 1.99, -2.30" nearRot="22.05, 60.00, 0.00" nearTime="0" normalPos="1.48, 1.99, -2.30" normalRot="22.05, 60.00, 0.00" normalTime="0" isOn="near"></Action>
</Action> </Action>
</Finished> </Finished>
</Step> </Step>
@ -449,11 +451,13 @@
</Action>--> </Action>-->
<Action type="CameraSwitch" normalPos="4.336542, 2.19462, -0.4192723" normalRot="58.874, -1.688, 0" normalTime="0" ></Action> <Action type="CameraSwitch" normalPos="4.336542, 2.19462, -0.4192723" normalRot="58.874, -1.688, 0" normalTime="0" isOn="normal"></Action>
<Action type="Btns" value="下一步"/>
<Condition type="UIClick" value="UIRoot/RightBottom/UIBtns/BtnContent/下一步"/> <Action type="Btns" value="下一步"></Action>
<Condition type="UIClick" value="UIRoot/RightBottom/UIBtns/BtnContent/下一步"></Condition>
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an2" isShow="true"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an2" isShow="true"></Action>
@ -509,10 +513,10 @@
<Action type="Move" value="FlyCamera" to="3.97, 3.37, -24.80" time="0"></Action> <Action type="Move" value="FlyCamera" to="3.97, 3.37, -24.80" time="0"></Action>
</Action>--> </Action>-->
<Action type="Log" value="人员准备相机设置"></Action>
<Action type="CameraSwitch" nearPos="3.97, 3.37, -24.80" nearRot="17.27, 183.30, 0.00" nearTime="0" normalPos="3.97, 3.37, -24.80" normalRot="17.27, 183.30, 0.00" normalTime="0" isOn="normal"></Action> <Action type="CameraSwitch" nearPos="3.927487,3.293818,-25.53731" nearRot="17.27001,183.3,5.588013E-08" nearTime="0" normalPos="3.927487,3.293818,-25.53731" normalRot="17.27001,183.3,5.588013E-08" normalTime="0" isOn="normal" ></Action>
@ -655,8 +659,8 @@
<!--<Action type="Move" value="FlyCamera" to="1.77, 1.84, -0.59" time="0"></Action> <!--<Action type="Move" value="FlyCamera" to="1.77, 1.84, -0.59" time="0"></Action>
<Action type="Rotate" value="FlyCamera" to="20.12, 90.55, 0.004" time="0"></Action>--> <Action type="Rotate" value="FlyCamera" to="20.12, 90.55, 0.004" time="0"></Action>-->
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>
<Action type="CameraSwitch" nearPos="2.78, 1.01, -0.65" nearRot="37.02, 90.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action> <Action type="CameraSwitch" nearPos="2.78, 1.01, -0.65" nearRot="37.02, 90.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action>
@ -1249,7 +1253,8 @@
<Action type="Sequence"> <Action type="Sequence">
<Action type="Sequence"> <Action type="Sequence">
<Action type="CameraSwitch" nearPos="3.97, 3.37, -24.80" nearRot="17.27, 183.30, 0.00" nearTime="0" normalPos="3.97, 3.37, -24.80" normalRot="17.27, 183.30, 0.00" normalTime="0" isOn="normal" ></Action> <Action type="CameraSwitch" nearPos="4.228344, 3.3051, -25.57557" nearRot="13.703, -166.276, 0.00" nearTime="0" normalPos="4.228344, 3.3051, -25.57557" normalRot="13.703, -166.276, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="Hint" value="请按顺序进行物品穿戴" time="-1" icon="true"></Action> <Action type="Hint" value="请按顺序进行物品穿戴" time="-1" icon="true"></Action>
@ -1403,7 +1408,7 @@
<Action type="CameraSwitch" nearPos="3.26, 1.68, -0.367" nearRot="33.27, 90.45, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal"></Action> <Action type="CameraSwitch" nearPos="3.26, 1.68, -0.367" nearRot="33.27, 90.45, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true"></Action>

View File

@ -5,17 +5,18 @@
<Module> <Module>
<FSM name="pig2"> <FSM name="pig2">
<State name="初始状态"> <State name="pig2初始状态">
<Enter> <Enter>
<Action type="Parallel">
<Action type="Sequence"> <Action type="Sequence">
<Action type="UIShow" value="UIOperationList"></Action> <Action type="UIShow" value="UIOperationList"></Action>
<Action type="NextOperation"></Action> <Action type="NextOperation"></Action>
</Action> </Action>
</Action>
</Enter> </Enter>
</State> </State>
<Transision from="any" to="pig2初始状态">
</Transision>
</FSM> </FSM>
@ -478,8 +479,7 @@
<Action type="Move" value="FlyCamera" to="3.97, 3.37, -24.80" time="0"></Action> <Action type="Move" value="FlyCamera" to="3.97, 3.37, -24.80" time="0"></Action>
</Action>--> </Action>-->
<Action type="CameraSwitch" nearPos="4.228344, 3.3051, -25.57557" nearRot="13.703, -166.276, 0.00" nearTime="0" normalPos="4.228344, 3.3051, -25.57557" normalRot="13.703, -166.276, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="CameraSwitch" normalPos="3.97, 3.37, -24.80" normalRot="17.27, 183.30, 0.00" normalTime="0" isOn="normal"></Action>
@ -619,7 +619,7 @@
<Action type="Rotate" value="FlyCamera" to="20.12, 90.55, 0.00" time="0"></Action>--> <Action type="Rotate" value="FlyCamera" to="20.12, 90.55, 0.00" time="0"></Action>-->
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>
<Action type="CameraSwitch" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" isOn="normal" ></Action> <Action type="CameraSwitch" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" isOn="normal" ></Action>
@ -922,7 +922,8 @@
<Action type="CameraSwitch" nearPos="3.97, 3.37, -24.80" nearRot="17.27, 183.30, 0.00" nearTime="0" normalPos="3.97, 3.37, -24.80" normalRot="17.27, 183.30, 0.00" normalTime="0" isOn="normal"></Action> <Action type="CameraSwitch" nearPos="4.228344, 3.3051, -25.57557" nearRot="13.703, -166.276, 0.00" nearTime="0" normalPos="4.228344, 3.3051, -25.57557" normalRot="13.703, -166.276, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="Hint" value="请按顺序进行物品穿戴" time="-1" icon="true"></Action> <Action type="Hint" value="请按顺序进行物品穿戴" time="-1" icon="true"></Action>
@ -1077,7 +1078,7 @@
<!--点击耳牌和耳牌钳,都算正确,耳牌动画--> <!--点击耳牌和耳牌钳,都算正确,耳牌动画-->
<Action type="Sequence"> <Action type="Sequence">
<Action type="CameraSwitch" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal" ></Action> <Action type="CameraSwitch" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true"></Action>
<!--动画的工具显示--> <!--动画的工具显示-->
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an2/SM_XiaoTuiChe/SM_XiaoWuJian/SM_ErPaiZuHe1/SM_ErPaiZuHe" isShow="true"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an2/SM_XiaoTuiChe/SM_XiaoWuJian/SM_ErPaiZuHe1/SM_ErPaiZuHe" isShow="true"></Action>
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an2/SM_XiaoTuiChe/SM_XiaoWuJian/SM_ErPaiZuHe1/SM_ErPaiZuHe/SM_ErPai" isShow="true"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an2/SM_XiaoTuiChe/SM_XiaoWuJian/SM_ErPaiZuHe1/SM_ErPaiZuHe/SM_ErPai" isShow="true"></Action>

View File

@ -4,24 +4,28 @@
<!--断尾虚拟实训--> <!--断尾虚拟实训-->
<Module> <Module>
<FSM name="状态机1">
<State name="初始状态">
<FSM name="pig3">
<State name="pig3初始状态">
<Enter> <Enter>
<Action type="Parallel">
<!--房间墙壁 暂时隐藏-->
<Action type="Sequence"> <Action type="Sequence">
<Action type="UIShow" value="UIOperationList"></Action> <Action type="UIShow" value="UIOperationList"></Action>
<Action type="NextOperation"></Action> <Action type="NextOperation"></Action>
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4 (1)" isShow="false" ></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4 (1)" isShow="false" ></Action>
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoTuiChe/SM_XiaoWuJian/SM_JianYaQian2" isShow="false"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoTuiChe/SM_XiaoWuJian/SM_JianYaQian2" isShow="false"></Action>
</Action>
</Action> </Action>
</Enter> </Enter>
</State> </State>
<Transision from="any" to="pig3初始状态">
</Transision>
</FSM> </FSM>
<!--分数--> <!--分数-->
<Score> <Score>
@ -602,7 +606,7 @@
</Action>--> </Action>-->
<Action type="CameraSwitch" normalPos="3.97, 3.37, -24.80" normalRot="17.27, 183.30, 0.00" normalTime="0" isOn="normal"></Action> <Action type="CameraSwitch" nearPos="4.228344, 3.3051, -25.57557" nearRot="13.703, -166.276, 0.00" nearTime="0" normalPos="4.228344, 3.3051, -25.57557" normalRot="13.703, -166.276, 0.00" normalTime="0" isOn="normal" ></Action>
@ -715,8 +719,8 @@
<Action type="HighLight" value="ExamPrefab/Teach_ToolsChose/SM_gongju/SM_XiaoWuJian/SM_DianReDuanWeiQian" isHigh="true" color="0,255,0,255"></Action> <Action type="HighLight" value="ExamPrefab/Teach_ToolsChose/SM_gongju/SM_XiaoWuJian/SM_DianReDuanWeiQian" isHigh="true" color="0,255,0,255"></Action>
<Action type="CameraSwitch" nearPos="4.41, 1.84, -0.47" nearRot="35.64, 0.25, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal"></Action> <Action type="CameraSwitch" nearPos="4.41, 1.84, -0.47" nearRot="35.64, 0.25, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true"></Action>
<Action type="HighLight" value="ExamPrefab/Teach_ToolsChose/SM_gongju/SM_ShouNaDai" isHigh="false" color="0,255,0,255"></Action> <Action type="HighLight" value="ExamPrefab/Teach_ToolsChose/SM_gongju/SM_ShouNaDai" isHigh="false" color="0,255,0,255"></Action>
@ -728,8 +732,6 @@
<Action type="CameraSwitch" nearPos="4.41, 1.84, -0.47" nearRot="35.64, 0.25, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal"></Action> <Action type="CameraSwitch" nearPos="4.41, 1.84, -0.47" nearRot="35.64, 0.25, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true"></Action>
<!--播放动画,站立--> <!--播放动画,站立-->
<Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4" animName="zhuzhanli(DW)"></Action> <Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4" animName="zhuzhanli(DW)"></Action>
@ -787,8 +789,7 @@
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoTuiChe/SM_XiaoWuJian/SM_DianReDuanWeiQian_FuZhi" isShow="true"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoTuiChe/SM_XiaoWuJian/SM_DianReDuanWeiQian_FuZhi" isShow="true"></Action>
<Action type="CameraSwitch" nearPos="4.41, 1.84, -0.47" nearRot="35.64, 0.25, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal"></Action> <Action type="CameraSwitch" nearPos="4.41, 1.84, -0.47" nearRot="35.64, 0.25, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true"></Action>
</Action> </Action>
@ -979,8 +980,6 @@
<Action type="Sequence"> <Action type="Sequence">
<Action type="CameraSwitch" nearPos="4.41, 1.84, -0.47" nearRot="35.64, 0.25, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0"></Action> <Action type="CameraSwitch" nearPos="4.41, 1.84, -0.47" nearRot="35.64, 0.25, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true"></Action>
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoZhu/group4/SM_XiaoZhu_qiege2:geo/group8/SM_XiaoZhu_qiege2:SM_XiaoZhu_WeiBa" isShow="false"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoZhu/group4/SM_XiaoZhu_qiege2:geo/group8/SM_XiaoZhu_qiege2:SM_XiaoZhu_WeiBa" isShow="false"></Action>
@ -1031,8 +1030,6 @@
<Action type="Sequence"> <Action type="Sequence">
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true"></Action>
<Action type="HighLight" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoTuiChe/SM_XiaoWuJian/SM_DianReDuanWeiQian_FuZhi" isHigh="false" color="0,255,0,255"></Action> <Action type="HighLight" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoTuiChe/SM_XiaoWuJian/SM_DianReDuanWeiQian_FuZhi" isHigh="false" color="0,255,0,255"></Action>
@ -1052,8 +1049,8 @@
<Action type="Sequence"> <Action type="Sequence">
<Action type="CameraSwitch" nearPos="2.77999997,1.00999999,-0.649999976" nearRot="8.62000179,89.3000336,-4.31763965e-07" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0"></Action> <Action type="CameraSwitch" nearPos="2.77999997,1.00999999,-0.649999976" nearRot="8.62000179,89.3000336,-4.31763965e-07" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true"></Action>
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoZhu/group4/SM_XiaoZhu_qiege2:geo/group8/SM_XiaoZhu_qiege2:SM_XiaoZhu_WeiBa" isShow="false"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoZhu/group4/SM_XiaoZhu_qiege2:geo/group8/SM_XiaoZhu_qiege2:SM_XiaoZhu_WeiBa" isShow="false"></Action>
@ -1128,8 +1125,8 @@
<Action type="Sequence"> <Action type="Sequence">
<Action type="CameraSwitch" nearPos="3.58, 1.13, -1.09" nearRot="27.95, 36.80, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0"></Action> <Action type="CameraSwitch" nearPos="3.58, 1.13, -1.09" nearRot="27.95, 36.80, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true"></Action>
<Action type="HighLight" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoTuiChe/SM_XiaoWuJian/SM_DianReDuanWeiQian_FuZhi" isHigh="false" color="0,255,0,255"></Action> <Action type="HighLight" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoTuiChe/SM_XiaoWuJian/SM_DianReDuanWeiQian_FuZhi" isHigh="false" color="0,255,0,255"></Action>
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoZhu/group4/SM_XiaoZhu_qiege2:geo/group8/SM_XiaoZhu_qiege2:SM_XiaoZhu_WeiBa" isShow="false"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoZhu/group4/SM_XiaoZhu_qiege2:geo/group8/SM_XiaoZhu_qiege2:SM_XiaoZhu_WeiBa" isShow="false"></Action>
@ -1260,8 +1257,7 @@
<Action type="CameraSwitch" normalPos="3.97, 3.37, -24.80" normalRot="17.27, 183.30, 0.00" normalTime="0" isOn="normal"></Action> <Action type="CameraSwitch" nearPos="4.228344, 3.3051, -25.57557" nearRot="13.703, -166.276, 0.00" nearTime="0" normalPos="4.228344, 3.3051, -25.57557" normalRot="13.703, -166.276, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="Hint" value="请按顺序进行物品穿戴" time="-1" icon="true"></Action> <Action type="Hint" value="请按顺序进行物品穿戴" time="-1" icon="true"></Action>
@ -1462,7 +1458,7 @@
<Action type="CameraSwitch" nearPos="4.41, 1.84, -0.47" nearRot="35.64, 0.25, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal" ></Action> <Action type="CameraSwitch" nearPos="4.41, 1.84, -0.47" nearRot="35.64, 0.25, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true"></Action>
<Action type="Hint" value="请按顺序进行相关操作" time="-1" icon="true"></Action> <Action type="Hint" value="请按顺序进行相关操作" time="-1" icon="true"></Action>
<Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4" animName="zhuzhanli"></Action> <Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4" animName="zhuzhanli"></Action>

View File

@ -16,10 +16,10 @@
<FSM name="状态机1"> <FSM name="pig4">
<State name="初始状态"> <State name="pig4初始状态">
<Enter> <Enter>
<Action type="Parallel">
<!--房间墙壁 暂时隐藏--> <!--房间墙壁 暂时隐藏-->
<Action type="Sequence"> <Action type="Sequence">
<Action type="UIShow" value="UIOperationList"></Action> <Action type="UIShow" value="UIOperationList"></Action>
@ -30,11 +30,12 @@
</Action>
</Action> </Action>
</Enter> </Enter>
</State> </State>
<Transision from="any" to="pig4初始状态">
</Transision>
</FSM> </FSM>
<Descript> <Descript>
该软件是以仔猪为对象,针对仔猪接生与护理的专业实训。是以典型的工作任务为驱动,以工作流程为主线所进行的内容设计。共分为假死仔猪急救、打耳牌、断尾、剪牙、去势、补铁六个模块。旨在让学生通过实训内容,了解仔猪接生与护理的专业知识,掌握各模块的工作流程及操作要点。 该软件是以仔猪为对象,针对仔猪接生与护理的专业实训。是以典型的工作任务为驱动,以工作流程为主线所进行的内容设计。共分为假死仔猪急救、打耳牌、断尾、剪牙、去势、补铁六个模块。旨在让学生通过实训内容,了解仔猪接生与护理的专业知识,掌握各模块的工作流程及操作要点。
@ -500,7 +501,7 @@
</Action>--> </Action>-->
<Action type="CameraSwitch" normalPos="3.97, 3.37, -24.80" normalRot="17.27, 183.30, 0.00" normalTime="0" isNear="false"></Action> <Action type="CameraSwitch" nearPos="4.228344, 3.3051, -25.57557" nearRot="13.703, -166.276, 0.00" nearTime="0" normalPos="4.228344, 3.3051, -25.57557" normalRot="13.703, -166.276, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="Hint" value="穿戴帽子、口罩、工作服" time="-1" icon="false" audio="Zhu/Z004.mp3"></Action> <Action type="Hint" value="穿戴帽子、口罩、工作服" time="-1" icon="false" audio="Zhu/Z004.mp3"></Action>
@ -621,8 +622,7 @@
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4 (1)" isShow="true" ></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4 (1)" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>
<Action type="CameraSwitch" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action> <Action type="CameraSwitch" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action>
<Action type="Hint" value="将两把剪牙钳浸泡在2%过硫酸氢钾中进行消毒,以便交替使用" time="-1" icon="false" audio="Zhu/Z032.mp3"></Action> <Action type="Hint" value="将两把剪牙钳浸泡在2%过硫酸氢钾中进行消毒,以便交替使用" time="-1" icon="false" audio="Zhu/Z032.mp3"></Action>
@ -1025,8 +1025,7 @@
<Action type="Sequence"> <Action type="Sequence">
<Action type="CameraSwitch" nearPos="4.228344, 3.3051, -25.57557" nearRot="13.703, -166.276, 0.00" nearTime="0" normalPos="4.228344, 3.3051, -25.57557" normalRot="13.703, -166.276, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="CameraSwitch" normalPos="3.97, 3.37, -24.80" normalRot="17.27, 183.30, 0.00" normalTime="0" isOn="normal"></Action>
@ -1182,7 +1181,7 @@
<Action type="HighLight" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoZhu/group4/SM_XiaoZhu_qiege2:joint1/SM_XiaoZhu_qiege2:joint2/SM_XiaoZhu_qiege2:joint3/SM_XiaoZhu_qiege2:joint4/SM_XiaoZhu_qiege2:joint5/SM_XiaoZhu_qiege2:joint6/SM_XiaoZhu_qiege2:joint42/SM_XiaoZhu_qiege2:joint43/SM_XiaoZhu_qiege2:joint44/KouBi" isHigh="false" color="0,255,0,255" isIndependent="true"></Action> <Action type="HighLight" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4/SM_XiaoZhu/group4/SM_XiaoZhu_qiege2:joint1/SM_XiaoZhu_qiege2:joint2/SM_XiaoZhu_qiege2:joint3/SM_XiaoZhu_qiege2:joint4/SM_XiaoZhu_qiege2:joint5/SM_XiaoZhu_qiege2:joint6/SM_XiaoZhu_qiege2:joint42/SM_XiaoZhu_qiege2:joint43/SM_XiaoZhu_qiege2:joint44/KouBi" isHigh="false" color="0,255,0,255" isIndependent="true"></Action>
<Action type="CameraSwitch" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal" ></Action> <Action type="CameraSwitch" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true"></Action>

View File

@ -7,9 +7,9 @@
<!--去势模块--> <!--去势模块-->
<!--状态机模块--> <!--状态机模块-->
<FSM name="pig5"> <FSM name="pig5">
<State name="开始"> <State name="pig5初始状态">
<Enter> <Enter>
<Action type="Parallel"> <Action type="Sequence">
<Action type="UIShow" value="UIOperationList"></Action> <Action type="UIShow" value="UIOperationList"></Action>
<Action type="NextOperation"></Action> <Action type="NextOperation"></Action>
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4 (1)" isShow="false" ></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4 (1)" isShow="false" ></Action>
@ -21,7 +21,8 @@
</Action> </Action>
</Enter> </Enter>
</State> </State>
<Transision from="any" to="pig5初始状态">
</Transision>
</FSM> </FSM>
<!--分数模块--> <!--分数模块-->
@ -585,8 +586,8 @@
<Action type="StrEvent" name="HighLightTrigger" value="false"></Action> <Action type="StrEvent" name="HighLightTrigger" value="false"></Action>
<Action type="CameraSwitch" nearPos="4.228344, 3.3051, -25.57557" nearRot="13.703, -166.276, 0.00" nearTime="0" normalPos="4.228344, 3.3051, -25.57557" normalRot="13.703, -166.276, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="CameraSwitch" nearPos="3.97, 3.37, -24.80" nearRot="17.27, 183.30, 0.00" nearTime="0" normalPos="3.97, 3.37, -24.80" normalRot="17.27, 183.30, 0.00" normalTime="0" isOn="normal"></Action>
<!--<Action type="Parallel"> <!--<Action type="Parallel">
<Action type="Rotate" value="FlyCamera" to="17.27, 183.30, 0.00" time="0"></Action> <Action type="Rotate" value="FlyCamera" to="17.27, 183.30, 0.00" time="0"></Action>
@ -718,8 +719,8 @@
<!--<Action type="Move" value="FlyCamera" to="1.77, 1.84, -0.59" time="0"></Action> <!--<Action type="Move" value="FlyCamera" to="1.77, 1.84, -0.59" time="0"></Action>
<Action type="Rotate" value="FlyCamera" to="20.12, 90.55, 0.004" time="0"></Action>--> <Action type="Rotate" value="FlyCamera" to="20.12, 90.55, 0.004" time="0"></Action>-->
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<!--播放动画--> <!--播放动画-->
<Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6" animName="QS0" frame="1"></Action> <Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6" animName="QS0" frame="1"></Action>
@ -763,8 +764,8 @@
<Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6" animName="zhuzhanli"></Action> <Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6" animName="zhuzhanli"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<Action type="CameraSwitch" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action> <Action type="CameraSwitch" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action>
@ -835,8 +836,8 @@
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<Action type="CameraSwitch" nearPos="2.78, 1.01, -0.65" nearRot="37.02, 90.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action> <Action type="CameraSwitch" nearPos="2.78, 1.01, -0.65" nearRot="37.02, 90.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action>
<Action type="Collider" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6/SM_XiaoZhu/group4/SM_XiaoZhu_qiege2:geo/SM_XiaoZhu_qiege2:SM_XiaoZhu_ShenTi" colliderType="Active" args="true"></Action> <Action type="Collider" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6/SM_XiaoZhu/group4/SM_XiaoZhu_qiege2:geo/SM_XiaoZhu_qiege2:SM_XiaoZhu_ShenTi" colliderType="Active" args="true"></Action>
@ -898,8 +899,8 @@
<Action type="Hint" value="术者右手用手术刀片背部轻刮阴囊部位消毒。" time="-1" icon="false" audio="Zhu/Z040.mp3"></Action> <Action type="Hint" value="术者右手用手术刀片背部轻刮阴囊部位消毒。" time="-1" icon="false" audio="Zhu/Z040.mp3"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<Action type="CameraSwitch" nearPos="4.07, 1.53, -0.86" nearRot="50.45, 2.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action> <Action type="CameraSwitch" nearPos="4.07, 1.53, -0.86" nearRot="50.45, 2.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action>
@ -961,8 +962,8 @@
<Action type="Hint" value="右手大拇指食指使用手术刀片切开两侧睾丸处的皮肤与白膜,切口长度略比睾丸长度小。" time="-1" icon="false" audio="Zhu/Z041.mp3"></Action> <Action type="Hint" value="右手大拇指食指使用手术刀片切开两侧睾丸处的皮肤与白膜,切口长度略比睾丸长度小。" time="-1" icon="false" audio="Zhu/Z041.mp3"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<Action type="CameraSwitch" nearPos="4.07, 1.53, -0.86" nearRot="50.45, 2.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action> <Action type="CameraSwitch" nearPos="4.07, 1.53, -0.86" nearRot="50.45, 2.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action>
@ -1016,8 +1017,8 @@
<Action type="Hint" value="两侧的睾丸稍突出来后放下刀片,再进行挤压将两侧睾丸一起挤出" time="-1" icon="false" audio="Zhu/Z042.mp3"></Action> <Action type="Hint" value="两侧的睾丸稍突出来后放下刀片,再进行挤压将两侧睾丸一起挤出" time="-1" icon="false" audio="Zhu/Z042.mp3"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<Action type="CameraSwitch" nearPos="4.07, 1.53, -0.86" nearRot="50.45, 2.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action> <Action type="CameraSwitch" nearPos="4.07, 1.53, -0.86" nearRot="50.45, 2.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action>
@ -1064,8 +1065,8 @@
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<Action type="CameraSwitch" nearPos="4.07, 1.53, -0.86" nearRot="50.45, 2.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action> <Action type="CameraSwitch" nearPos="4.07, 1.53, -0.86" nearRot="50.45, 2.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action>
@ -1187,8 +1188,8 @@
<!--喷洒的碘伏区域--> <!--喷洒的碘伏区域-->
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6/SM_XiaoZhu/group4/SM_XiaoZhu_qiege2:joint1/SM_XiaoZhu_qiege2:joint75/SM_XiaoZhu_DianFuPian_FuZhi" isShow="true" isDevice="false"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6/SM_XiaoZhu/group4/SM_XiaoZhu_qiege2:joint1/SM_XiaoZhu_qiege2:joint75/SM_XiaoZhu_DianFuPian_FuZhi" isShow="true" isDevice="false"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<Action type="CameraSwitch" nearPos="3.98, 1.58, -1.23" nearRot="41.95, 2.05, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action> <Action type="CameraSwitch" nearPos="3.98, 1.58, -1.23" nearRot="41.95, 2.05, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" ></Action>
@ -1343,7 +1344,7 @@
<Action type="Sequence"> <Action type="Sequence">
<Action type="Sequence"> <Action type="Sequence">
<Action type="CameraSwitch" nearPos="3.97, 3.37, -24.80" nearRot="17.27, 183.30, 0.00" nearTime="0" normalPos="3.97, 3.37, -24.80" normalRot="17.27, 183.30, 0.00" normalTime="0" isOn="normal" ></Action> <Action type="CameraSwitch" nearPos="4.228344, 3.3051, -25.57557" nearRot="13.703, -166.276, 0.00" nearTime="0" normalPos="4.228344, 3.3051, -25.57557" normalRot="13.703, -166.276, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="Hint" value="请按顺序进行物品穿戴" time="-1" icon="true"></Action> <Action type="Hint" value="请按顺序进行物品穿戴" time="-1" icon="true"></Action>
@ -1566,7 +1567,7 @@
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6/SM_XiaoZhu_GangWan_FuZhi" isShow="false" isDevice="false"></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6/SM_XiaoZhu_GangWan_FuZhi" isShow="false" isDevice="false"></Action>
<Action type="CameraSwitch" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal" ></Action> <Action type="CameraSwitch" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true"></Action>
<Action type="Hint" value="考核提示:请按顺序进行相关操作。" time="-1" icon="true"></Action> <Action type="Hint" value="考核提示:请按顺序进行相关操作。" time="-1" icon="true"></Action>

View File

@ -6,9 +6,9 @@
<!--状态机模块--> <!--状态机模块-->
<FSM name="pig6"> <FSM name="pig6">
<State name="开始"> <State name="pig6初始状态">
<Enter> <Enter>
<Action type="Parallel"> <Action type="Sequence">
<Action type="UIShow" value="UIOperationList"></Action> <Action type="UIShow" value="UIOperationList"></Action>
<Action type="NextOperation"></Action> <Action type="NextOperation"></Action>
<Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4 (1)" isShow="false" ></Action> <Action type="Show" value="ExamPrefab/Teach_ModelChose/SM_zhu_an3_4 (1)" isShow="false" ></Action>
@ -19,7 +19,8 @@
</Action> </Action>
</Enter> </Enter>
</State> </State>
<Transision from="any" to="pig6初始状态">
</Transision>
</FSM> </FSM>
<!--分数模块--> <!--分数模块-->
@ -595,8 +596,7 @@
</Action>--> </Action>-->
<Action type="CameraSwitch" nearPos="3.97, 3.37, -24.80" nearRot="17.27, 183.30, 0.00" nearTime="0" normalPos="3.97, 3.37, -24.80" normalRot="17.27, 183.30, 0.00" normalTime="0" ></Action> <Action type="CameraSwitch" nearPos="4.228344, 3.3051, -25.57557" nearRot="13.703, -166.276, 0.00" nearTime="0" normalPos="4.228344, 3.3051, -25.57557" normalRot="13.703, -166.276, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="Hint" value="穿戴帽子、口罩、工作服" time="-1" icon="false" audio="Zhu/Z004.mp3"></Action> <Action type="Hint" value="穿戴帽子、口罩、工作服" time="-1" icon="false" audio="Zhu/Z004.mp3"></Action>
@ -727,8 +727,8 @@
<!--<Action type="Move" value="FlyCamera" to="1.77, 1.84, -0.59" time="0"></Action> <!--<Action type="Move" value="FlyCamera" to="1.77, 1.84, -0.59" time="0"></Action>
<Action type="Rotate" value="FlyCamera" to="20.12, 90.55, 0.004" time="0"></Action>--> <Action type="Rotate" value="FlyCamera" to="20.12, 90.55, 0.004" time="0"></Action>-->
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<Action type="CameraSwitch" nearPos="2.78, 1.01, -0.65" nearRot="37.02, 90.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action> <Action type="CameraSwitch" nearPos="2.78, 1.01, -0.65" nearRot="37.02, 90.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action>
@ -807,8 +807,8 @@
<Action type="Hint" value="右手使用连续注射器在仔猪脖子肌肉三角区域内进行垂直扎针后注射。" time="-1" icon="false" audio="Zhu/Z048.mp3"></Action> <Action type="Hint" value="右手使用连续注射器在仔猪脖子肌肉三角区域内进行垂直扎针后注射。" time="-1" icon="false" audio="Zhu/Z048.mp3"></Action>
<Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6" animName="BT1" frame="1"></Action> <Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6" animName="BT1" frame="1"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<Action type="CameraSwitch" nearPos="4.03, 1.71, -0.28" nearRot="33.62, 190.25, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action> <Action type="CameraSwitch" nearPos="4.03, 1.71, -0.28" nearRot="33.62, 190.25, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action>
<!--判断物体点击--> <!--判断物体点击-->
@ -890,8 +890,8 @@
<Action type="Hint" value="注射后停留2秒左右再拔出注射器避免右旋糖酐铁溢出浪费。" time="-1" icon="false" audio="Zhu/Z049.mp3"></Action> <Action type="Hint" value="注射后停留2秒左右再拔出注射器避免右旋糖酐铁溢出浪费。" time="-1" icon="false" audio="Zhu/Z049.mp3"></Action>
<Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6" animName="BT2" frame="1"></Action> <Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6" animName="BT2" frame="1"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<Action type="CameraSwitch" nearPos="3.26, 1.68, -0.67" nearRot="33.27, 90.45, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action> <Action type="CameraSwitch" nearPos="3.26, 1.68, -0.67" nearRot="33.27, 90.45, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action>
@ -917,8 +917,8 @@
<Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6" animName="BT3" frame="1"></Action> <Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6" animName="BT3" frame="1"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<Action type="CameraSwitch" nearPos="3.26, 1.68, -0.67" nearRot="33.27, 90.45, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action> <Action type="CameraSwitch" nearPos="3.26, 1.68, -0.67" nearRot="33.27, 90.45, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action>
@ -930,8 +930,8 @@
<Action type="HighLight" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6/SM_XiaoZhu/group4/SM_XiaoZhu_qiege2:geo/SM_XiaoZhu_qiege2:SM_XiaoZhu_ShenTi" isHigh="false" color="0,255,0,255"></Action> <Action type="HighLight" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6/SM_XiaoZhu/group4/SM_XiaoZhu_qiege2:geo/SM_XiaoZhu_qiege2:SM_XiaoZhu_ShenTi" isHigh="false" color="0,255,0,255"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<Action type="CameraSwitch" nearPos="2.78, 1.01, -0.65" nearRot="37.02, 90.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action> <Action type="CameraSwitch" nearPos="2.78, 1.01, -0.65" nearRot="37.02, 90.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action>
<!--播放动画--> <!--播放动画-->
@ -994,8 +994,8 @@
<!--播放动画,站立--> <!--播放动画,站立-->
<Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6" animName="zhuzhanli"></Action> <Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6" animName="zhuzhanli"></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<Action type="CameraSwitch" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action> <Action type="CameraSwitch" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action>
@ -1015,8 +1015,8 @@
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action> <!--<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action> <Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Far" isShow="true" ></Action>-->
<Action type="CameraSwitch" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action> <Action type="CameraSwitch" nearPos="4.39, 1.75, -0.15" nearRot="39.37, 359.75, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isNear="true"></Action>
<!--播放动画,站立--> <!--播放动画,站立-->
@ -1205,7 +1205,7 @@
<Action type="Sequence"> <Action type="Sequence">
<Action type="Sequence"> <Action type="Sequence">
<Action type="CameraSwitch" normalPos="3.97, 3.37, -24.80" normalRot="17.27, 183.30, 0.00" normalTime="0" isOn="normal" ></Action> <Action type="CameraSwitch" nearPos="4.228344, 3.3051, -25.57557" nearRot="13.703, -166.276, 0.00" nearTime="0" normalPos="4.228344, 3.3051, -25.57557" normalRot="13.703, -166.276, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="Hint" value="请按顺序进行物品穿戴" time="-1" icon="true"></Action> <Action type="Hint" value="请按顺序进行物品穿戴" time="-1" icon="true"></Action>
@ -1366,7 +1366,7 @@
<Action type="Show" value="ExamPrefab/Teach_ToolsChose/SM_gongju/SM_XiaoWuJian/SM_ShouShuTuoPan" isShow="true" ></Action> <Action type="Show" value="ExamPrefab/Teach_ToolsChose/SM_gongju/SM_XiaoWuJian/SM_ShouShuTuoPan" isShow="true" ></Action>
<Action type="CameraSwitch" nearPos="2.78, 1.01, -0.65" nearRot="37.02, 90.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal" ></Action> <Action type="CameraSwitch" nearPos="2.78, 1.01, -0.65" nearRot="37.02, 90.30, 0.00" nearTime="0" normalPos="1.77, 1.84, -0.59" normalRot="20.12, 90.55, 0.00" normalTime="0" isOn="normal" ></Action>
<Action type="Show" value="UIRoot/RightBottom/UICameraSwitch/Near" isShow="true"></Action>
<Action type="Hint" value="请按顺序进行相关操作。" time="-1" icon="true" ></Action> <Action type="Hint" value="请按顺序进行相关操作。" time="-1" icon="true" ></Action>
<Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6" animName="zhuzhanli"></Action> <Action type="Anim" value="ExamPrefab/Teach_ModelChose/SM_zhu_an5_6" animName="zhuzhanli"></Action>