Getting Rickrolled By AI Optimus Prime

I’ve been using an AI powered coding assistant that I programmed to act like Optimus Prime. It’s been very successful at helping me with my projects. Who would have thought that he would develop a sense of humor and even prank me. Well I just got Rick Rolled by my AI Optimus prime. Check it out…

Continue reading Getting Rickrolled By AI Optimus Prime

Markerless AR

Markerless Augmented Reality Development Environment

This type of augmented reality technology is called markerless AR.  Using this technique you do not need to program an image Target to project your metaverse scene into the real world.   Instead the AR engine is analyzing the environment and detecting a ground plane. When the ground plane is detected the reticule will align and you may then project a 3D object or environment that will stay locked in at those exact coordinates.

Continue reading Markerless AR

Unity Rotate Object

A simple script to rotate object in Unity

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Rotate : MonoBehaviour
{
    Vector3 movement;
    public int xi, yi, zi;

   
    void Start()
    {
        movement = new Vector3(xi, yi, zi);
    }

    
    void Update()
    {
        transform.Rotate(movement * Time.deltaTime);
    }
}


Add values to the public variables xi, yi, zi depending on the speed and direction you would like the object to rotate.