Posts

Showing posts from May, 2023

AI

                   Artificial Intelligence (AI) HPE AI makes the artificial intelligence (AI) of tomorrow. When your data is universally accessible, your AI teams are focussed on development and deployment, and your IT infrastructure is flexible and unbounded. HPE makes AI that is data-driven, production-oriented and cloud-enabled, available anytime, anywhere and at any scale. Operationalise, optimise and orchestrate AI Build your AI platform with IT infrastructure that’s flexible and unbounded. Our on-prem, cloud and hybrid options take into account your team’s location, access needs, security, and cost constraints, and our open systems use best-of-breed GPU and CPU technologies. With purpose-built AI-optimised solutions, you can quickly operationalise machine learning while turning data into a strategic resource with our data management platforms. Speed the design and deployment of your AI strategy No matter where you are in your AI jo...

Jetpack

Hello everyone  You have a serious problem. The code as it is right now will hang Unity. The issue is the while loop on line 26 combined with you declaring gas an integer. So your while loop cycles, increment gas by some small fraction. Bug since gas is an integer, it never increased (stays zero), so the while loop never terminates. And you don't want a while loop anyway. There are a few more problematic things here as well. For example, you are using CharacterController. Move and CharacterController SimpleMove. You should pick one or the other.Here is the results of some quick hacking on your code. It could be written better, but it gives you a starting point. If you jump, you will go to the top of the jump height and stay there (flying) until you run out of gas.