Vimeo streams video in two possible ways:
- HLS → uses
.m3u8playlists and.ts/fragmented MP4 segments. - DASH → uses a
playlist.jsonmanifest and.m4ssegments.
| using UnityEngine; | |
| using TMPro; | |
| using Sirenix.OdinInspector; | |
| /// <summary> | |
| /// An extension of TextMeshPro that causes the text to be displayed in a | |
| /// circular arc. | |
| /// | |
| /// Adapted from https://github.com/TonyViT/CurvedTextMeshPro and improved. | |
| /// TonyViT's version has some unnecessary properties and doesn't use the |