This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Hologram Shader built for World of Zero | |
| Shader "World of Zero/Hologram" | |
| { | |
| Properties | |
| { | |
| _MainTex ("Texture", 2D) = "white" {} | |
| _Color ("Color", Color) = (1, 0, 0, 1) | |
| _Bias("Bias", Float) = 0 | |
| _ScanningFrequency ("Scanning Frequency", Float) = 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| # Adapted from http://kutuma.blogspot.com/2007/08/sending-emails-via-gmail-with-python.html | |
| import getpass | |
| import smtplib | |
| from email.MIMEMultipart import MIMEMultipart | |
| from email.MIMEBase import MIMEBase | |
| from email.MIMEText import MIMEText | |
| from email import Encoders | |
| import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Credit to damien_oconnell from http://forum.unity3d.com/threads/39513-Click-drag-camera-movement | |
| // for using the mouse displacement for calculating the amount of camera movement and panning code. | |
| using UnityEngine; | |
| using System.Collections; | |
| public class MoveCamera : MonoBehaviour | |
| { | |
| // |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Credit to damien_oconnell from http://forum.unity3d.com/threads/39513-Click-drag-camera-movement | |
| // for using the mouse displacement for calculating the amount of camera movement and panning code. | |
| using UnityEngine; | |
| using System.Collections; | |
| public class MoveCamera : MonoBehaviour | |
| { | |
| // | |
| // VARIABLES |