Skip to content

Instantly share code, notes, and snippets.

View eXponenta's full-sized avatar
🏠
Working from home

Konstantin Timoshenko eXponenta

🏠
Working from home
  • Turkey, Antalya
View GitHub Profile
@eXponenta
eXponenta / Analyser.cs
Last active August 30, 2017 11:54 — forked from alerdenisov/Analyser.cs
FPS UI Graph
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
namespace FpsAnalyzer
{
[ExecuteInEditMode]
public class Analyser : MaskableGraphic
{
@eXponenta
eXponenta / gist:366d92e9621b018f6f546ef623a42e6c
Last active August 7, 2016 18:13 — forked from Dranser/gist:62639ea75d62d2d8363816e783abaadf
Скрипт позволяющий воспроизводить музыкальные файлы последовательно
using UnityEngine;
using System.Collections;
public class AudioPlayer : MonoBehaviour {
public AudioClip[] Tracks;
public AudioSource Audio_Player;
public int currentTrack = 0;
public bool PlayNow = false;
void Start ()