Make A Gorgeous 3D Game w/ NO MODELS OR TEXTURES (FAST!)
Thomas Brush
Let me help you make a beautiful 3D game with NO models or textures! ► Join EASY3D totally free: https://www.fulltimegamedev.com/sign-up-easy3d ► Get my 2D Game Kit Free: https://www.fulltimegamedev.com/free-game-kit ► Learn my secrets to 6 figures as a game dev, year after year! https://www.fulltimegamedev.com/join-webinar-live-stream ► Learn Game Dev (Get 25% off with code LETSGO): https://full-time-game-dev.teachable.com/p/full-time-game-dev/ ► Learn 2D Art (Get 25% off with code LETSGO): https://full-time-game-dev.teachable.com/p/2d-art-pro ► Wishlist "Father": https://store.steampowered.com/app/1575990/Father/ ► Edited by: https://youtube.com/channel/UCSw7bZnTAxp_YJYxjb0Qn5A ► Follow Thomas on Instagram: https://www.instagram.com/thomasbrushdev/ ► Follow Coder of "Father" Ajay: https://www.youtube.com/c/AJTechTV/videos ► Follow "Father" 3D Weapons Creator, Felipe: https://www.youtube.com/user/Felipecaravelli/videos ► Follow "Father" sound designer, Hector! https://www.youtube.com/channel/UCSXULsAci5W3FIQy-mr0XKg ► Play Neversong: https://store.steampowered.com/app/733210/Neversong_formerly_Once_Upon_A_Coma/ ► Play Pinstripe on Switch or Steam: http://atmosgames.com/ ► Check out my games: http://atmosgames.com/ ► Ask a question on my subreddit: https://www.reddit.com/r/ThomasBrush/ ► My Studio Set-Up: https://www.amazon.com/shop/thomasbrush
-- Links & Resources For This Video -- 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();
}
}
201546206 Bytes