| | |
| | | guideContent = so.tipContent;
|
| | | arrowPosition = so.arrowPosition;
|
| | | selectBox = so.selectBox;
|
| | | effect2 = so.effect2;
|
| | | var selectBosAssetName = string.Empty;
|
| | | switch (so.selectBox)
|
| | | {
|
| | |
| | | so.tipContent = guideContent;
|
| | | so.arrowPosition = arrowPosition;
|
| | | so.selectBox = selectBox;
|
| | | so.effect2 = effect2;
|
| | | if (m_ClickTarget != null)
|
| | | {
|
| | | so.UIElementPath = UIUtility.GetUIElementRelativePath(uiroot, m_ClickTarget);
|
| | |
| | | guide.Finish();
|
| | | }
|
| | |
|
| | | if (GUILayout.Button("重置"))
|
| | | {
|
| | | guide.Reset();
|
| | | }
|
| | |
|
| | | EditorGUILayout.Space();
|
| | | EditorGUILayout.EndHorizontal();
|
| | | }
|
| | |
| | | FunctionalGuideCenter.Instance.RemoveGuide(guideId);
|
| | | }
|
| | |
|
| | | public void Reset()
|
| | | {
|
| | | NewBieCenter.Instance.ResetGuide(guideId);
|
| | | }
|
| | |
|
| | | } |
| | | |
| | | |