Добавить
Уведомления

UNITY You Can Make A Beautiful 3D Game In 15 Minutes

Free character controller: https://assetstore.unity.com/packages/3d/characters/modular-first-person-controller-189884 Get free sounds: https://freesound.org/ Edit sounds free: https://www.audacityteam.org/download/ Get free music: https://newgrounds.com/ -- Voice Over Trigger Script-- *Be sure you name it VoiceOverTrigger.cs* 👇 using System.Collections; using System.Collections.Generic; using UnityEngine; public class VoiceOverTrigger : MonoBehaviour { public AudioSource audioSource; public AudioClip audioClip; private void OnTriggerEnter(Collider other) { if(other.gameObject.name == "FirstPersonController") { audioSource.Stop(); audioSource.clip = audioClip; audioSource.Play(); } } }

12+
7 просмотров
13 дней назад
26 ноября 2025 г.
12+
7 просмотров
13 дней назад
26 ноября 2025 г.

Free character controller: https://assetstore.unity.com/packages/3d/characters/modular-first-person-controller-189884 Get free sounds: https://freesound.org/ Edit sounds free: https://www.audacityteam.org/download/ Get free music: https://newgrounds.com/ -- Voice Over Trigger Script-- *Be sure you name it VoiceOverTrigger.cs* 👇 using System.Collections; using System.Collections.Generic; using UnityEngine; public class VoiceOverTrigger : MonoBehaviour { public AudioSource audioSource; public AudioClip audioClip; private void OnTriggerEnter(Collider other) { if(other.gameObject.name == "FirstPersonController") { audioSource.Stop(); audioSource.clip = audioClip; audioSource.Play(); } } }

, чтобы оставлять комментарии