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

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.