by Lucien | Nov 25, 2019 | Uncategorized
This will be a video made from this information one day. https://developer.oculus.com/documentation/unreal/latest/concepts/unreal-building-ue4-from-source/?locale=en_US Special Thanks to The Frank–Ratchye STUDIO for Creative Inquiry at Carnegie Mellon University for... by Lucien | Nov 17, 2019 | Uncategorized
If you’re using Visual Studio and don’t have intellisense working with Unity there’s a quick and easy solution. Before starting, I suggest you have Visual Studio closed. Now go ahead and open up your Unity project, go to preferences, external tools.... by Lucien | Oct 28, 2019 | Uncategorized
Wednesday, November 6, 2024 Atlast internet! Where to start? Lots of things happened since last time. There’s a new president-elect, conservative Christopher Donner. This genius will dismantle the moon and Mars programs and privatize the rest. He’ll also... by Lucien | Aug 3, 2019 | Uncategorized
This tutorial is a simplified version of Tobiah Zarlez’s Processing plugin documentation. You first should download & install Visual Studio Code. During the installation, be sure to tick the box which says PATH. Next, download Processing. I extracted the... by Lucien | Jul 31, 2019 | Uncategorized
All types in Python are classes Classes define the structure and behavior of an object Class is determined when an object is created Class is fixed for the lifetime of the object Classes are defined with the “class” keyword followed by a name with... by Lucien | Jul 29, 2019 | Uncategorized
Talk = '' def create_greeting(greeting=None): global Talk Talk = greeting + ' fellow blogsters! ' return Talk create_greeting('Hello') Talk += 'How are we doing today?' def create_sign(greeting, decoration = "*"): line = decoration * len(greeting) # len(STRING) gets...