日帰りでいける超有名温泉地!!
新宿→箱根湯本
| 電車 | 運賃 | 時間 |
|---|---|---|
| ロマンスカー | 運賃1,090+特急料金1,190=2380円 | 約1時間半(直通)~約2時間(乗り換えあり) |
| 普通電車 | 1,190円 | 1回乗換で2時間2分、3回乗換えで2時間10分とあまり差がない |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <script src="https://webrtc.github.io/adapter/adapter-latest.js"></script> | |
| <script src="https://rawgit.com/otalk/sdp/master/sdp.js"></script> | |
| <script src="https://webrtc.github.io/samples/src/js/third_party/graph.js"></script> | |
| <style> | |
| video { | |
| width: 320px; | |
| } |
| const series = {}; | |
| const graphs = {}; | |
| const dataTypes = ['bytesSent', 'framesEncoded']; | |
| let lastSendResult; | |
| let lastRecvResult; | |
| function show(stream, side) { | |
| const id = side !== 'local' ? stream.id : 'local'; | |
| const container = document.createElement('div'); |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <script src="https://webrtc.github.io/adapter/adapter-latest.js"></script> | |
| <script src="https://rawgit.com/otalk/sdp/master/sdp.js"></script> | |
| <script src="https://webrtc.github.io/samples/src/js/third_party/graph.js"></script> | |
| <style> | |
| video { | |
| width: 320px; |
| var MediaDevices = []; | |
| Module['preRun'].push(function () { | |
| var enumerateMediaDevices = function () { | |
| var getMedia = navigator.getUserMedia || | |
| navigator.webkitGetUserMedia || | |
| navigator.mozGetUserMedia || | |
| navigator.msGetUserMedia; |
| var LibraryWebCamWebGL = { | |
| $webcam: { | |
| canvas: null | |
| }, | |
| JS_WebCam_IsSupported: function () { | |
| var getMedia = navigator.getUserMedia || | |
| navigator.webkitGetUserMedia || | |
| navigator.mozGetUserMedia || | |
| navigator.msGetUserMedia; |
| Shader "Custom/SampleShader1" { | |
| Properties{ | |
| _ColorSpace("Color Space", Int) = 0 // Gamma=0, Linear=1 | |
| _Collect("Gamma", Float) = 2.2 | |
| _MainTex("Main Tex", 2D) = "white" {} | |
| } | |
| SubShader{ | |
| Tags { "RenderType" = "Opaque" } | |
| CGPROGRAM | |
| #pragma surface surf Lambert //alpha |
| using System.Runtime.InteropServices; | |
| using UnityEngine; | |
| public class ColorTest : MonoBehaviour | |
| { | |
| [StructLayout(LayoutKind.Explicit)] | |
| public struct Color32RGBA | |
| { | |
| [FieldOffset(0)] | |
| public byte R; |