Skip to content
View hockenmaier's full-sized avatar
Block or Report

Block or report hockenmaier

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. humanjoystick humanjoystick Public

    Experimental VR movement system where player moves through the virtual environment by changing their physical location within their playspace.

    C# 1

  2. billofrights billofrights Public

    A serverless chatbot for google assistant. Tells people about the Bill of Rights

    Python

  3. filemover filemover Public

    This is a simply python utility that I wrote move files around my home servers. It probably is not optimized and it's definitely not pretty, but it was a good first project to practice python and i…

    Python

  4. RaspberryPiControlPanel RaspberryPiControlPanel Public

    HTML

  5. This class is used to make a moving ... This class is used to make a moving platform "ridable". This means the player's ship (represented by Globals.playerShip here) is parented to the platform when it collides and unparented when it leaves. It also imparts realistic velocity to the ship's rigidbody when it leaves and handles network updating of the ship's riding status. All netcode is using Photon's PUN engine.
    1
    using System.Collections;
    2
    using System.Collections.Generic;
    3
    using UnityEngine;
    4
    using Photon.Pun;
    5
    
                  
  6. This is a basic script that will con... This is a basic script that will connect to the Photon network and create or join a room called "Room 1". Any client running this script will connect to the same room.
    1
    using System.Collections;
    2
    using System.Collections.Generic;
    3
    using UnityEngine;
    4
    using Photon.Pun;
    5
    using Photon.Realtime;