- Creating a Reflection Shader
- Transparent water for indie
- UNITY3D - ransparent Water Effect | Free version | 3.x & 4.x
- Unity3D - Fun with Built-In Shaders and Effects
- Unity 4 - Creating a Survival Game in Unity: Part 1 - Island Creation
- Unity 5 - Writing Shader
- Unity 5 Graphics - The Standard Shader - Unity Official Tutorials
- Unity 5 - From Beginner to Pro #11 - Water 4
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
import com.intellij.database.model.DasTable | |
import com.intellij.database.util.Case | |
import com.intellij.database.util.DasUtil | |
import java.awt.datatransfer.StringSelection | |
import java.awt.Toolkit | |
import java.awt.datatransfer.* | |
/* | |
* How to use: |
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
import com.intellij.database.model.DasTable | |
import com.intellij.database.util.Case | |
import com.intellij.database.util.DasUtil | |
import java.awt.datatransfer.StringSelection | |
import java.awt.Toolkit | |
import java.awt.datatransfer.* | |
/* | |
* Available context bindings: |
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
<div class="container-box"> | |
<canvas id="base" class="chart-bar" | |
chart-data="data" | |
chart-labels="labels" | |
chart-colors="colors" | |
chart-dataset-override="datasetOverride" | |
chart-options="options" | |
height="300" width="500"> | |
</canvas> | |
</div> |
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
:: First, make oracle services start manually | |
:: Run servinces.msc | |
:: Right click oracle* service > Properties | |
:: Change startup type to manual | |
:: Run this script if you want to start oracle database | |
:: PS. Need run as administrator to works | |
net start OracleVssWriterORCL | |
net start OracleDBConsoleorcl |
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
using UnityEngine; | |
using UnityEditor; | |
using System; | |
using UnityEditor.SceneManagement; | |
using UnityEngine.SceneManagement; | |
namespace NirSoft.UtilityEditor | |
{ | |
/// <summary> | |
/// Autosave scene on run. |
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
using UnityEngine; | |
using UnityEditor; | |
using System.Collections; | |
// taken from http://answers.unity3d.com/answers/312489/view.html and modified to C# Unity 5 | |
// put it in editor folder | |
// select a camera then pressing Shift+C or in Window/Preview Selected Camera. | |
public class CameraPreview : EditorWindow | |
{ | |
Camera camera; |
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
using System; | |
using UnityEngine; | |
using Vexe.FastSave; | |
using Vexe.Runtime.Types; | |
namespace FSExamples | |
{ | |
public class GameObjectTest : BaseBehaviour | |
{ | |
public GameObject target; |
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
//How to get: | |
//invoke Profile._karma_tips in javascript console. | |
for (var key in Profile._karma_tips) { | |
console.log(Profile._karma_tips[key]) | |
} | |
* Menulis plurk mengenai hal menarik dan mendapat pengikut akan meningkatkan karma Anda | |
* Kehilangan pengikut akan menurunkan karma Anda | |
* Karma akan turun jika Anda meminta hubungan pertemanan dan ditolak <br /> <img src="/static/emoticons/platinum/idiot.gif" /> | |
* Mengundang orang ke Plurk akan memberikan Anda tambahan karma <br /> <img src="/static/emoticons/gold/rock_n_roll.gif" /> |
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
function showPopUpDataPindah(button_id) { | |
var id_nik = button_id.substr(6); | |
console.log('id_nik: '+id_nik); | |
var nik = document.getElementById(id_nik).innerHTML; | |
console.log('nik: '+nik); | |
var id = button_id.substr(6); |
NewerOlder