Jump to content

computerg767

Member
  • Posts

    47
  • Joined

  • Last visited

Awards

This user doesn't have any awards

About computerg767

  • Birthday November 10

Contact Methods

  • Steam
    computerg767
  • Origin
    computerg767
  • Twitter
    computerg767

Profile Information

  • Gender
    Male
  • Member title
    Junior Member

computerg767's Achievements

  1. Benefits for a laptop would be less battery usage, reduced heat on your palms ( depending on where your hardrive is located on your laptop. ) as well as no moving parts so it will/may last longer.
  2. is this in college or just high school?
  3. I can't seem to find good tutorials to use the github desktop application. I am also looking for a way to make a group and add people to it. Any help will be much appreciated Thanks, COmputerg767
  4. looking for a mod for each individual half lifes to make it look awesome. if you can refer me to links to set it up that would be great thanks
  5. so I am copying this exact tutorial on how to code pacman http://noobtuts.com/unity/2d-pacman-game currently on The Movement Scriptand type the code as it shows on the website. the code seems to work but when ever i use the arrow keys it doesnt want to do anything. Heres my code: using UnityEngine; using System.Collections; public class PacmanMove : MonoBehaviour { public float speed = 0.4f; Vector2 dest = Vector2.zero; void Start() { dest = transform.position; } void FixedUpdate() { // Move closer to Destination Vector2 p = Vector2.MoveTowards(transform.position, dest, speed); rigidbody2D.MovePosition(p); // Check for Input if not moving if ((Vector2)transform.position == dest) { if (Input.GetKey(KeyCode.UpArrow) && valid(Vector2.up)) dest = (Vector2)transform.position + Vector2.up; if (Input.GetKey(KeyCode.RightArrow) && valid(Vector2.right)) dest = (Vector2)transform.position + Vector2.right; if (Input.GetKey(KeyCode.DownArrow) && valid(-Vector2.up)) dest = (Vector2)transform.position - Vector2.up; if (Input.GetKey(KeyCode.LeftArrow) && valid(-Vector2.right)) dest = (Vector2)transform.position - Vector2.right; } } bool valid(Vector2 dir) { // Cast Line from 'next to Pac-Man' to 'Pac-Man' Vector2 pos = transform.position; RaycastHit2D hit = Physics2D.Linecast(pos + dir, pos); return (hit.collider == collider2D); } } If you could help me that would great!
  6. So I tried installing the new amd omega driver didnt work so I did ddu and restarted in safe mode to do it and I still didn't work tried an older version that didn't work. Heard about some new windows update that messes it up uninstalled it and tried again and still nothing. The computer freezes after it install the amd video driver. Please help me
  7. I have the current dolphin vr i could find and have the oculus runtime the latest to this date. I do not have a dk2 yet but am hoping to order it tonight hopefully. I have tried it and its only using full screen, I have everything setup as shown online but it wont display the two eye part. Do I need a oculus rift in order this part to work or no? thanks for the help in advanced
  8. yep did it now just waiting for my grandfather to bring over an unused green screen
  9. alright i already have that software downloaded but how would i go about capturing all my programs as well as webcam
  10. because i am looking for something to record more then just video games. because i dont think those programs just capture your screen or other programs that you are using
  11. well i wanna record like software tutorials and it will probably not let me do that ?
  12. I am looking for just software now and will do the hardware compturing later when i have the money
×