View wether_post_google_home.py
This file contains 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 requests | |
import urllib | |
import pprint | |
import json | |
import struct | |
import subprocess | |
def main(): | |
url = makeUrl() | |
json_data = requestJson(url) |
View Notification.cs
This file contains 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.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class Notification { | |
static Notification _Instance; | |
public static Notification Instance { | |
get { | |
if (_Instance == null) { |
View FirebaseRemoteConfig.cs
This file contains 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 System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
using UnityEngine; | |
using Firebase; | |
using Firebase.RemoteConfig; | |
using System.Threading.Tasks; | |
public class FirebaseRemoteConfig { |
View FirebaseRealtimeDatabaseSample2.cs
This file contains 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 System.Linq; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using TwitterKit.Unity; | |
using Firebase; | |
using Firebase.Database; | |
using Firebase.Unity.Editor; |
View FirebaseRealtimeDatabaseSample1.cs
This file contains 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 System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
using UnityEngine; | |
using TwitterKit.Unity; | |
using Firebase; | |
using Firebase.Database; | |
using Firebase.Unity.Editor; |
View FirebaseTwitterAuthenticationSample.cs
This file contains 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.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using System.Linq; | |
using TwitterKit.Unity; | |
using Firebase; | |
using Firebase.Database; | |
using Firebase.Unity.Editor; | |
public class PUFirebaseTwitterLogin : MonoBehaviour { |
View TwitterKitForUnitySample.cs
This file contains 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.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using TwitterKit.Unity; | |
public class TwitterKitForUnitySample : MonoBehaviour { | |
private string _AccessToken; | |
private string _Secret; |
View ArborTransitionOnClick.cs
This file contains 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 System.Collections; | |
using System.Linq; | |
using Arbor; | |
using UniRx; | |
using UniRx.Triggers; | |
/** | |
* 指定回数Mouseクリック / Tapがされると次のStateへ遷移するScriptです。 |
View ArborChangeSpriteColor.cs
This file contains 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 System.Collections; | |
using Arbor; | |
/** | |
* Spriteの色を変更します | |
*/ | |
// MenuのComponentにメニューを追加する | |
[AddComponentMenu("Arbor/Sprite色変更")] |
View ArborOpenDoorTransition.cs
This file contains 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.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
namespace Arbor { | |
/** | |
* 戸棚があいていればTransitionします | |
*/ | |
[AddComponentMenu("")] |
NewerOlder