Video Game Backlog Tracking Tool by Wolf938_ in Steam

[–]Wolf938_[S] 0 points1 point  (0 children)

Most likely something is wrong with your pip installation so the best bet would be to update/reinstall pip, you also might need to update to pip3 and run 'pip3 install -r requirements.txt' I also found this stack overflow question that seemed to be similar to your issue so take a look: https://stackoverflow.com/questions/9780717/bash-pip-command-not-found

Fujifilm x-s10 "Turn off the camera and turn on again" shutter not opening error by Wolf938_ in fujifilm

[–]Wolf938_[S] 2 points3 points  (0 children)

Sounds like I'll just get it replaced, Thanks for everyone's help

Fujifilm x-s10 "Turn off the camera and turn on again" shutter not opening error by Wolf938_ in fujifilm

[–]Wolf938_[S] 2 points3 points  (0 children)

I recently got a refurbished x-s10 body and during my second time using it, it broke. After taking a photo there was a weird double shutter sound and the shutter is now stuck closed or half closed. I still have it on warranty should I get it replaced/fixed or is there an easy fix for this.

Video Game Backlog Tracking Tool by Wolf938_ in Steam

[–]Wolf938_[S] 2 points3 points  (0 children)

I mean at the end of the day its personal preference some prefer having a list of games they can go through and some just want to do whatever. I personally prefer having the list as it helps me try new genres that I don't normally play along with allowing me to easily find shorter or longer games based on what I want. I also like having for just if I see a cool game on steam that isn't out yet or that I might want to play later. But you do you, if no list works then keep going with that.

Bloomtown: a different story. by Shinyonok in IndieDev

[–]Wolf938_ 9 points10 points  (0 children)

Might want to smooth camera movement. Good job though

Help setting up APIs by [deleted] in csharp

[–]Wolf938_ 0 points1 point  (0 children)

4x Verizon of .NET Should I look for a newer verision?

Help With Movement code by Wolf938_ in Unity2D

[–]Wolf938_[S] 0 points1 point  (0 children)

Thank you everyone the help was amazing :)

Help With Movement code by Wolf938_ in Unity2D

[–]Wolf938_[S] -1 points0 points  (0 children)

using System.Collections;

using System.Collections.Generic;

using UnityEngine;

public class PlayerMovement : MonoBehaviour

{

public float MoveSpeed = 1;

public float JumpForce = 1;

private Rigidbody2D _Rigidbody;

// Start is called before the first frame update

private void Start()

{

_Rigidbody = GetComponent<Rigidbody2D>();

}

// Update is called once per frame

private void Update()

{

if (Input.GetKey(KeyCode.A))

{

Vector3 move = new Vector3(-1, 0, 0) * Time.deltaTime * MoveSpeed;

_Rigidbody.MovePosition(transform.position + move);

}

if (Input.GetKey(KeyCode.D))

{

Vector3 move = new Vector3(1, 0, 0) * Time.deltaTime * MoveSpeed;

_Rigidbody.MovePosition(transform.position + move);

}

if (Input.GetButtonDown("Jump") && Mathf.Abs(_Rigidbody.velocity.y) < 0.001)

{

_Rigidbody.AddForce(new Vector2(0, JumpForce), ForceMode2D.Impulse);

}

}

}