Axel Nordh 2d6ff87cc6 Start faceoff working há 3 meses atrás
..
Material f7c638d610 First Hockey commiy há 3 meses atrás
Prefab 2d6ff87cc6 Start faceoff working há 3 meses atrás
Rink f7c638d610 First Hockey commiy há 3 meses atrás
Scenes 2d6ff87cc6 Start faceoff working há 3 meses atrás
ScriptableObjects 2d6ff87cc6 Start faceoff working há 3 meses atrás
Scripts 2d6ff87cc6 Start faceoff working há 3 meses atrás
Settings f7c638d610 First Hockey commiy há 3 meses atrás
TextMesh Pro f7c638d610 First Hockey commiy há 3 meses atrás
UI 2d6ff87cc6 Start faceoff working há 3 meses atrás
UI Toolkit 2d6ff87cc6 Start faceoff working há 3 meses atrás
DefaultVolumeProfile.asset f7c638d610 First Hockey commiy há 3 meses atrás
DefaultVolumeProfile.asset.meta f7c638d610 First Hockey commiy há 3 meses atrás
InputSystem_Actions.inputactions f7c638d610 First Hockey commiy há 3 meses atrás
InputSystem_Actions.inputactions.meta f7c638d610 First Hockey commiy há 3 meses atrás
Material.meta f7c638d610 First Hockey commiy há 3 meses atrás
Prefab.meta f7c638d610 First Hockey commiy há 3 meses atrás
README.md f7c638d610 First Hockey commiy há 3 meses atrás
README.md.meta f7c638d610 First Hockey commiy há 3 meses atrás
Rink.meta f7c638d610 First Hockey commiy há 3 meses atrás
Scenes.meta f7c638d610 First Hockey commiy há 3 meses atrás
ScriptableObjects.meta f7c638d610 First Hockey commiy há 3 meses atrás
Scripts.meta f7c638d610 First Hockey commiy há 3 meses atrás
Settings.meta f7c638d610 First Hockey commiy há 3 meses atrás
SimpleRink.fbx f7c638d610 First Hockey commiy há 3 meses atrás
SimpleRink.fbx.meta f7c638d610 First Hockey commiy há 3 meses atrás
TextMesh Pro.meta f7c638d610 First Hockey commiy há 3 meses atrás
UI Toolkit.meta 2d6ff87cc6 Start faceoff working há 3 meses atrás
UI.meta 2d6ff87cc6 Start faceoff working há 3 meses atrás
UniversalRenderPipelineGlobalSettings.asset f7c638d610 First Hockey commiy há 3 meses atrás
UniversalRenderPipelineGlobalSettings.asset.meta f7c638d610 First Hockey commiy há 3 meses atrás

README.md

Player Implementation for Hockey Game

Overview

This project is a hockey game that includes player behavior and on-ice representation. The player implementation consists of various scripts that manage the player's actions, input, movement, statistics, and animations.

Project Structure

  • Scripts/: Contains all the scripts related to the game logic.

    • MainGameScript.cs: The main script for the game, handling the core game loop.
    • Player/: A folder dedicated to player-related scripts.
    • PlayerController.cs: Manages the player's overall behavior and interactions.
    • PlayerMovement.cs: Handles movement logic, including acceleration and direction changes.
    • PlayerInput.cs: Captures and processes player input from devices.
    • PlayerStats.cs: Holds player statistics like health and speed.
    • PlayerAnimationController.cs: Manages player animations based on state and actions.
  • Prefabs/: Contains prefabs for game objects.

    • Player/: Prefab representing the player character.
  • Material/: Contains materials and physics materials for game objects.

    • Player/: Materials specific to the player, including jersey and physics settings.
  • Scenes/: Contains Unity scenes for the game.

    • SampleScene.unity: A sample environment for testing.

Setup Instructions

  1. Open the project in Unity.
  2. Navigate to the Scenes folder and open SampleScene.unity to view the sample environment.
  3. The player prefab can be found in the Prefabs/Player folder. Drag and drop it into the scene to add a player character.
  4. Adjust the player settings in the Inspector as needed.

Components Description

  • PlayerController: Central script for managing player states and interactions.
  • PlayerMovement: Controls how the player moves within the game environment.
  • PlayerInput: Handles input from the player, translating it into actions.
  • PlayerStats: Manages player attributes and provides methods for modification.
  • PlayerAnimationController: Controls animations based on player actions and states.

Notes

Ensure that all scripts are properly linked to the player prefab for full functionality. Adjust materials and physics settings as necessary to achieve the desired gameplay experience.