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
Patch for Myo Unity package for SDK Windows 0.8.0 to access EMG raw data. |
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
// PluginUpdateCheck.cs | |
// Check for new releases of repositories on GitHub. | |
// By Adrienne Lombardo (@charblar) | |
using System; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
using UnityEngine; | |
using UnityEditor; |
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
AFRAME.registerComponent('outline-geometry', { | |
schema : { | |
margin : { default : 1.025 }, | |
color: { default : 'red' }, | |
}, | |
init : function () { | |
var p = this.el; | |
var p_prime = p.cloneNode(true); | |
p_prime.removeAttribute('outline-geometry') | |
p_prime.setAttribute('material', 'color', this.data.color) |
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
--# Main | |
-- Cider 7 | |
-- an interactive interface builder for Codea | |
-- version 7.1 | |
-- 2 Jan 2014 | |
-- Mark Sumner | |
-- [email protected] | |
displayMode(FULLSCREEN_NO_BUTTONS) |