Advanced Search
Search Results
150 total results found
Mobile VR -Setting Up Unity
...vious versions might also work, however, this tutorial was made usi ...ow you to compile Android apps, however, IOS apps require you to us ...re you planning to use to test/show your project. We found that in most cases, students use just one device. Also,...
An Introduction to 2D in Unity 5
...nd in the Inspector you can set how many pixels there are per unit. If we set this the same as the size of the square image then this square is one unit in the game system. If this window pops up, click Apply. Now drag Square from the Project tab to th...
"Hello, World!" in Node.js
...nstructions and an animation of how this is done using the command line. $ cd Desktop $ mkdir hello-world $ cd hello-world $ touch hello.js The commands above explained: cd [directory-name] - Change the current directory you are in mkdir [direc...
AR with Unity - Step #2 - Unity project setup
...be useful for you to understand how Vuforia works and won't interfere with the future development of your project. If you take a look inside of the Scene panel (element #1 on the image below), you will notice a plane with an image applied as a texture (...
Testing/publishing your project - Android devices
...d USB debugging.Instruccions on how to enable developer modeand USB debugging are found here Uploading your content to your device The process of uploading your content to your device is fairly simple, once you plug your phone onto your computer, you s...
Adding content - Music and Audio
...f the Assets pane. Additional information on importing audio files, including optimised settings for audio clips, can be found here. A tutorial that covers some of the topics above and shows you how to add a simple interactive element can be found here.
Making Breathing Light with LEDs
... led int brightness = 0; // how bright the LED is int fadeAmount = 5; void setup() { pinMode(led, OUTPUT); pinMode(led2, OUTPUT); //optional for 2nd led } void loop() { //breathing light analogWrite(led, brightness); analogWrite(led2, brigh...
Using Quixel Materials
... or more difficult depending on how detailed a material has to be. ... the Details panel. This panel shows you the properties of the object you have selected. This is where you can see the location, rotation, scale, and other various properties that an ob...
3D Scanning a face for MetaHuman
This guide will show you how to create a realistic copy of yourself into a MetaHuman for you to use in digital content. This guide assumes you have a basic knowledge of 3D modelling but will cover most of the steps required. The approach we are going to use t...
Unreal Engine UI Video
A short demo explaining the basic UI of Unreal Engine, as well as instructions on how to navigate viewports and content organisation.
Introduction to Python
...amming environment. We'll cover how to install Python on different operating systems and introduce you to the PyCharm Integrated Development Environment (IDE), which will make your coding experience smoother and more efficient. Whether your goal is to use ...
Using a TCS34725 RGB Color Sensor
...tutorial. We have a tutorial on how to install a library here. Wiring For LEONARDO, it's more like matching labels. GND - GND VIN - 5V SDA - SDA SCL - SCL For UNO, A4 and A5 are the I2C pins rather than just a Analog Input pin. GND - GND VIN - 5V SDA -...
Using a Force Sensor
...e resistance value depending on how much it has pressed. It can sense even the slightest touch, therefore you can use it as a touch sensor as well. The difference between this and Capacitive Sensor is that the object you touched doesn't need to be conducti...
Using Arduino Leonardo to send USB MIDI data
...Arduino to applications like MadMapper, Max and Ableton Live. In or ...'ll need to follow the guide on How to install libraries to install the MIDIUSB library. The following is a modification of the basic MIDIUSB write example, by wrapping the noteOn and n...
Using an MFRC522 RFID reader
...ease see this tutorial to learn how to install libraries. Getting s ....PCD_DumpVersionToSerial(); // Show details of PCD - MFRC522 Card Reader details Serial.println(F("Scan PICC to see UID, SAK, type, and data blocks...")); } void loop() { // Reset th...
Using an PN532 RFID reader
...ease see this tutorial to learn how to install libraries. Getting started The number of blocks of data depends on the type of RFID tag or card you’re using. Most commonly, the MIFARE Classic card is used, which is compatible with both the PN532 and MFRC522...
Using built-in example code and Reading the hookup diagram
...about installing libraries, finishing learning how to use Neopixel and using the Ultrasonic Distance sensor. After finishing all the tutorials, please come back to the final bit. Installing libraries Using Neopixel Using Ultrasonic distance sensor
Using NFC Tools to Read/Write NFC tag
...We have another tutorial which shows you how to read and write an NFC tag using the Arduino, which is more intensive and useful if you have other interactive components in your project involving Arduino.. Types of Tag In this tutorial, we are using NTAG203...
Using a Whadda Vibration Motor Module
...? We already have a tutorial on how to use a vibration motor on its own. The Whadda Vibration Motor Module simplifies this process by integrating all the essential components—such as a transistor, capacitor, and diode—into a single module along with the co...
Using the serial monitor and serial logger
... or Bluetooth serial emulators. However at it's most basic serial communication is a sequence of binary digits (0s and 1s) that convey information. Serial monitor The serial monitor on the Arduino is able to display messages the Arduino board sends via U...