MayHeCome/Assets/Exoa/TutorialEngine/Resources/Tutorials/1.1.json

53 lines
2.1 KiB
JSON
Raw Permalink Normal View History

2024-12-18 09:55:34 +00:00
{
"tutorial_steps": [
{
"text": "Welcome to this demo! Tutorial Engine is a simple tool to highlight objects and UI to explain how your game or app works!",
"target_obj": "",
"sendMessage": "",
"isClickable": false,
"isReplacingNextButton": false
},
{
"text": "You can highlight any GameObject. Just ensure it has a Renderer or Collider on it!",
"target_obj": "cube",
"sendMessage": "",
"isClickable": false,
"isReplacingNextButton": false
},
{
"text": "This is an action button, you cannot click it yet, as it's behind the tutorial. It will be clickable during the next step.",
"target_obj": "ActionBtn",
"sendMessage": "",
"isClickable": false,
"isReplacingNextButton": false
},
{
"text": "Now this button is clickable! It has been pushed in front thanks to the new \"make clickable\" option. So you can optionally click it or just go to the next step.",
"target_obj": "ActionBtn",
"sendMessage": "",
"isClickable": true,
"isReplacingNextButton": false
},
{
"text": "This button is clickable and replaces the \"NEXT\" button so the user cannot avoid clicking on it, and it will trigger the next step action!",
"target_obj": "ActionBtn2",
"sendMessage": "",
"isClickable": true,
"isReplacingNextButton": true
},
{
"text": "Note that this tutorial can not be skipped, you have the option when you launch each tutorial!",
"target_obj": "",
"sendMessage": "",
"isClickable": false,
"isReplacingNextButton": false
},
{
"text": "Great! This tutorial is done. To launch the next one, click this button after this tutorial is over!",
"target_obj": "PlayBtn",
"sendMessage": "",
"isClickable": false,
"isReplacingNextButton": false
}
]
}