Skip to content

Instantly share code, notes, and snippets.

View hirojun5670's full-sized avatar

hirose hirojun5670

View GitHub Profile
@hirojun5670
hirojun5670 / unity_www
Created April 7, 2015 13:49
UnityでWWW
using UnityEngine;
using System;
using System.Collections;
public class WebRequestAPI : MonoBehaviour {
// Use this for initialization
void Start () {
StartCoroutine (Request("https://www.google.co.jp", ResponceAction));
}