chromium / badssl.com

:lock: Memorable site for testing clients against bad SSL configs.
https://badssl.com
Apache License 2.0
2.81k stars 190 forks source link

Unity 2D game code not moving my player. Please help. #393

Closed DtotheP closed 5 years ago

DtotheP commented 5 years ago

Here is my code

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

public class player : MonoBehaviour {

float angle = 0;
int xSpeed = 3;

void Start()
{

}

void Update(); 
{
    Moveplayer();
}

void Moveplayer() 
{
    Vector2 pos = transform.position;
    pos.x = Mathf.Cos(angle)*3;
    pos.y = 0;
    transform.position * pos;
    angle += Time.deltaTime * xSpeed;

}

}

christhompson commented 5 years ago

Wrong repo, sorry :-)

DtotheP commented 5 years ago

Umm, what?? I have no idea what that means man. I'm barely a coder irl. I just want to make my games. Why did you close this down?

christhompson commented 5 years ago

This repository has nothing to do with Unity or games. For coding help, maybe try Stack Overflow.

DtotheP commented 5 years ago

So the problem is where I posted it? Or is GitHub just lazy and doesn’t actually help it’s users when they need it?

On Tue, Jul 2, 2019 at 5:55 PM Chris Thompson notifications@github.com wrote:

This repository has nothing to do with Unity or games. For coding help, maybe try Stack Overflow https://stackoverflow.com/questions.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/chromium/badssl.com/issues/393?email_source=notifications&email_token=ABFLQS4ORL2REPMNKQI4AALP5PFEFA5CNFSM4H4M6PMKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZCVD3Q#issuecomment-507859438, or mute the thread https://github.com/notifications/unsubscribe-auth/ABFLQS5MDXRA6AKSTY5VUQLP5PFEFANCNFSM4H4M6PMA .

christhompson commented 5 years ago

I'm going to lock this as this will not be productive for either of us.

GitHub is a project hosting service. Each project is run by different people and different teams. It is not a Q&A service -- Stack Overflow will be much more helpful for that.

This particular project that you are posting in is managed by the Chromium team and maintains an SSL/TLS test website. See our project README for more details. We cannot help you with Unity or programming questions.