This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The StackBudget iOS app does not collect any user data of any kind. The app does not access the Internet at all. | |
It is just a simple budgeting app. | |
If you wish to verify this for yourself, see the source code at https://github.com/esotericsean/StackBudget |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class PickUp : MonoBehaviour { | |
float throwForce = 100; | |
Vector3 objectPos; | |
float distance; |