> For the complete documentation index, see [llms.txt](https://fantacode.gitbook.io/cutscene-system/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fantacode.gitbook.io/cutscene-system/documentation/cutscene-trigger.md).

# Cutscene Trigger

This section explains how to trigger a cutscene. Now there are 7 cutscene triggers available in our system and you can also create custom triggers if required.

<div align="left"><figure><img src="https://3007250873-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FP9FEBK4VU4ZymTQrhNzz%2Fuploads%2Ft8etQpQ2nfyILf3pWs13%2FScreenshot%202023-03-20%20192214.png?alt=media&amp;token=a8a6068e-80b7-4ff2-8abc-f03fadbc45de" alt=""><figcaption></figcaption></figure></div>

<table><thead><tr><th width="195">Trigger Type</th><th>Description</th></tr></thead><tbody><tr><td>OnStart</td><td>To start the cutscene from Start function</td></tr><tr><td>OnEnable</td><td>To start the cutscene from OnEnable function</td></tr><tr><td>OnDestroy</td><td>To start the cutscene when the trigger object is destroyed</td></tr><tr><td>OnTrigger</td><td>To start the cutscene when the player or a specified 3D object enters the trigger</td></tr><tr><td>OnTrigger2D</td><td>To start the cutscene when the player or a specified 2D object enters the trigger</td></tr><tr><td>OnTriggerWithKeyDown</td><td>To start the cutscene when the player or a specified 3D object enters the trigger and presses the <a href="/cutscene-system/documentation/input-manager.md#interact">interact</a> key</td></tr><tr><td>OnTrigger2DWithKeyDown</td><td>To start the cutscene when the player or a specified 2D object enters the trigger and presses the <a href="/cutscene-system/documentation/input-manager.md#interact">interact</a> key</td></tr></tbody></table>

Also, you can use **CutsceneManager.PlayCutscene()** to run a cutscene

<div align="left"><figure><img src="https://3007250873-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FP9FEBK4VU4ZymTQrhNzz%2Fuploads%2FE8JrsFQ8rZ57qXzVSPCU%2FScreenshot%202023-04-06%20151052.png?alt=media&amp;token=4e25fccf-8f68-4e48-91bb-b4f7ea6c5f67" alt=""><figcaption></figcaption></figure></div>
