| 更新: | 2017-05-09 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 3.14 |
| URL: | http://voluntas.github.io/ |
MQTT をググって調べた人向け
| using UnityEngine; | |
| using System.Collections; | |
| #if UNITY_EDITOR | |
| using UnityEditor; | |
| [InitializeOnLoad] | |
| // 大草原クラス | |
| class WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW | |
| { |
| using UnityEngine; | |
| using UnityEngine.EventSystems; | |
| //by Ralph Barbagallo | |
| //www.flarb.com | |
| //www.ralphbarbagallo.com | |
| //@flarb | |
| public class VRInputModule : BaseInputModule { |
| 更新: | 2017-05-09 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 3.14 |
| URL: | http://voluntas.github.io/ |
MQTT をググって調べた人向け
| 更新: | 2022-03-18 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2022.1 |
| URL: | http://voluntas.github.io/ |
| override public func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) { | |
| guard let touch = touches.first else { | |
| return | |
| } | |
| UIGraphicsBeginImageContextWithOptions(bounds.size, false, 0.0) | |
| let context = UIGraphicsGetCurrentContext() | |
| image?.draw(in: bounds) | |
| var touches = [UITouch]() |
| using UnityEngine; | |
| public class ProjectionMatrixSetter : MonoBehaviour { | |
| Camera main; | |
| [SerializeField] | |
| float nearClip = 0.01f; | |
| [SerializeField] | |
| float farClip = 500.0f; |
| 更新: | 2021-06-23 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2021.11 |
| URL: | https://voluntas.github.io/ |
目的
| #MicroXplorer Configuration settings - do not modify | |
| File.Version=6 | |
| KeepUserPlacement=false | |
| Mcu.Family=STM32F1 | |
| Mcu.IP0=NVIC | |
| Mcu.IP1=RCC | |
| Mcu.IP2=RTC | |
| Mcu.IP3=SYS | |
| Mcu.IP4=USB | |
| Mcu.IPNb=5 |
| <!--XSL style sheet to convert EESCHEMA XML Partlist Format to grouped CSV BOM Format | |
| Copyright (C) 2014, Wolf Walter. | |
| Copyright (C) 2013, Stefan Helmert. | |
| Copyright (C) 2018, Kicad developers. | |
| Copyright (C) 2019, arturo182. | |
| GPL v2. | |
| Functionality: | |
| Generation of JLCPCB PCBA compatible BOM |
| #include <Arduino.h> | |
| #include <M5StickC.h> | |
| #include <utility/MPU6886.h> // used for accessing MPU constants | |
| #include <driver/rtc_io.h> | |
| void mpu6886_wake_on_motion_isr(void); // declaration of ISR | |
| void mpu6886_wake_on_motion_setup(void); // declaration of setup | |
| // lifted from https://github.com/m5stack/M5StickC/blob/master/src/utility/MPU6886.cpp | |
| // if integrated with M5StickC library, use internal class function instead |