Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

147 total results found

Bonus round: putting an existing Unity project into git

Games Workshop: Version Control for Games Design

...liar with the command line, the way to use it is to type a command ...weird crap in it which we don't want to keep track of. We need a g ...ere's the .gitignore content we want to use - this is the list Git ...f you're working on Mac, you'll want to add this to it too: # ===...

How to get started with Face Tracking in Spark AR

Spark AR TEMPLATE : Basic Face Tracking

Face Tracking in Spark AR Watch this video which explains the basic features of the Face Tracker in Spark AR. There are multiple different starter templates in Spark AR that make use of face tracking. To make your development easier, choose a template t...

How to get started with World Effects in Spark AR

Spark AR TEMPLATE: World Effects

World Effects in Spark AR Watch this video which explains the basics of World Effects in Spark AR. There are multiple different starter templates in Spark AR that make use of world effects. To make your development easier, choose a template that is most...

Connecting a Potentiometer

Physical Computing Tutorials

...e between 0V to 5V, at the half way the voltage on pin #2 would be ...dPin 13 #define potPin A0 void setup() { pinMode( ledPin, OUTPUT ); pinMode( potPin, INPUT ); } void loop() { digitalWrite( ledPin, HIGH ); delay( analogRead( potPin ) ); di...

How to use a Rotary Encoder Button

Physical Computing Tutorials

... rotary encoders rotate all the way around continuously and are di ...e for the button in ms void setup() { Serial.begin(9600); // Initialize encoder encoder.begin(); // Initialize interrupts attachInterrupt(digitalPinToInterrupt(pin1), inter...

How to use IR Breakbeam Sensor

Physical Computing Tutorials

...frared; detects changes in long-wave IR (heat) in its field. ...nt lastState = 0; void setup() { pinMode(LEDPIN, OUTPUT); pinMode(SENSORPIN, INPUT); digitalWrite(SENSORPIN, HIGH); // turn on the pullup Serial.begin(960...

3D Scanning a face for MetaHuman

Metahuman Creator

...se a hairband to hold any hair away from the forehead. Note: This ... from different angles. The software will then build a model from ...o the process entirely. We also want to crop our scan to save the ...ptured. After this, you should wait for the model to generate. Th...

Interactive Projections

Projection Mapping

...t. This can be done in multiple ways, this tutorial will briefly i ...e here: https://www.youtube.com/watch?v=1Uw2PWTR_XM&t=529s. Begin ...he Threshold value; Ideally you want to get completely transparent ...si=8FYoHdmTat231lBA&t=626 - be aware that in the tutorial he calls...

OculusQuest - Setting up development enviroment in Unity

VR tutorials - Unity Oculus Quest Tutorials

...t grab and haptics. The easiest way to get the Oculus Integration ... You will then be asked if you want to restart the Unity editor, ...other message asking you if you want to upgrade the spatializer plugin, hit Upgrade and then hit Restart. Onc...

Accessibility Statement

About the Lab Frequently Asked Questions

...s accessible as possible and we want as many people as possible to ...te using speech recognition software listen to most of the websit ...accessible to screen reader software old video content is missing ...accessible to screen reader software or using just a keyboard Fee...

(MAC) Automatic printing with Automator

Physical Computing Tutorials

... programming knowledge or don't want to do a lot of coding. One of ...ter Choose the folder where you want to put all your printing file ...and choose the printer that you want to use as the default printer. 5. Save the Script 6. Quit Automator You must ...

UE Foliage

Unreal Engine Basics Creating Virtual Worlds

...for the Megascans. The pack we want to import is called the Megas ... which trees/bushes/grasses you want to use by clicking the +Folia .... However, if you feel like you want to add more assets to fill out your scene, the foliage packs also contain small...

Using Quixel Materials

Unreal Engine Basics Creating Virtual Worlds

...lenging to find exactly what we want. It is important to think abo ...ce you find a material that you want to use, select it, download i ...hese values to get the size you want on your project. After changing these values and saving the material, we will ...

How to set the sound output in Raspberry Pi

Raspberry Pi Tutorials

...via HDMI as well. The below will show you two different ways to set the output device. Met ... -t sine -f 440 -c 2 Or play a WAV sound file: aplay /home/pi/Mus ...ic/youOwnSoundFile.wav Or play a MP3 sound file: cvlc /home/pi/Music/youOwnSoundFile.mp3

AR with Unity - Step #3 - Adding content to your project

Unity AR Image target AR tutorial

...ep #1 - Development environment setup AR with Unity - Step #2 - Ena ... set to Single Image, also, be aware that your image size should match the exact size of your printed image to avoid scale mismatch. Unity uses meters as the default unit scale so if y...

AR with Unity - Step #4 - Building and testing your app

Unity AR Image target AR tutorial

...ep #1 - Development environment setup AR with Unity - Step #2 - Enabling the Vuforia plug-in AR with Unity - Step #3 - Adding content to your project Building your project Before building the app we need to make sure we disable the default main cam...

How to make the Raspberry Pi display a web page fullscreen at power on

Raspberry Pi Tutorials

...be enough for you to be able to setup a Raspberry Pi with GUI mode and auto login enabled to disable a web page full screen automatically when it turns on. Copy full-screen.sh into the home folder of the pi user, and run the following command: /home/pi/f...

Using a Vibration Motor

Physical Computing Tutorials

...) Getting started This code is getting the motor to vibrate for 1 second and stop for 1 second. int motorPin = 3; //motor transistor is connected to pin 3 void setup() { pinMode(motorPin, OUTPUT ...stop vibrating delay(1000); //wait 50 seconds. }