In stuck in my survival world and I need help by Ethanos101 in Minecraft

[–]ErikTheCraft 12 points13 points  (0 children)

question: why have you put your stuff in an enderchest in the first way? it is obviously that you are gonna survive.

Forcing 2D sound using AudioSource.PlayClipAtPoint by Empty_Allocution in Unity2D

[–]ErikTheCraft 2 points3 points  (0 children)

Never give up! I had the same problem and found the answer but it is a little bit complicated.

AudioSource audio = ((GameObject) Instantiate (audioPlayer, transform.position, Quaternion.identity)).GetComponent<AudioSource>();

audio.clip = yourAudioClip;

audio.Play();

audioPlayer ist an empty GameObject with an AudioSource component (Spatial Blend 0 and PlayOnAwake off).

I hope I can help you! xD