generated from TigardHighGDC/GameDevTemplate
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial setup * Player stat saver * Still having some problems * Working on it * Main into game saver (#3) * Loading Bar Weapon Spawn * Piercing Fix * Item Descriptions * Begining Items * Fixed * Items Creataed * Zip Bomb * Sniper Scope * Dice Gun * Items Done * Clang Ran * Item Descriptions * Review cms --------- Co-authored-by: Nathan St. John <[email protected]> * Problem with weapon inventory * Working! --------- Co-authored-by: Nathan St. John <[email protected]>
- Loading branch information
1 parent
b8f0402
commit cfea408
Showing
16 changed files
with
711 additions
and
19 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Copyright (c) TigardHighGDC | ||
// SPDX-License SPDX-License-Identifier: Apache-2.0 | ||
|
||
using System.Collections; | ||
using System.Collections.Generic; | ||
using UnityEngine; | ||
|
||
public class HidePlayer : MonoBehaviour | ||
{ | ||
private void Start() | ||
{ | ||
// Find the player game object and set it to inactive | ||
GameObject player = GameObject.Find("Player 1"); | ||
player.SetActive(false); | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
%YAML 1.1 | ||
%TAG !u! tag:unity3d.com,2011: | ||
--- !u!1 &2471153101020959619 | ||
GameObject: | ||
m_ObjectHideFlags: 0 | ||
m_CorrespondingSourceObject: {fileID: 0} | ||
m_PrefabInstance: {fileID: 0} | ||
m_PrefabAsset: {fileID: 0} | ||
serializedVersion: 6 | ||
m_Component: | ||
- component: {fileID: 2138528470364355460} | ||
- component: {fileID: 4789057121056509013} | ||
m_Layer: 0 | ||
m_Name: PlayerStats | ||
m_TagString: Untagged | ||
m_Icon: {fileID: 0} | ||
m_NavMeshLayer: 0 | ||
m_StaticEditorFlags: 0 | ||
m_IsActive: 1 | ||
--- !u!4 &2138528470364355460 | ||
Transform: | ||
m_ObjectHideFlags: 0 | ||
m_CorrespondingSourceObject: {fileID: 0} | ||
m_PrefabInstance: {fileID: 0} | ||
m_PrefabAsset: {fileID: 0} | ||
m_GameObject: {fileID: 2471153101020959619} | ||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} | ||
m_LocalPosition: {x: 0, y: 0, z: -10} | ||
m_LocalScale: {x: 1, y: 1, z: 1} | ||
m_ConstrainProportionsScale: 0 | ||
m_Children: [] | ||
m_Father: {fileID: 0} | ||
m_RootOrder: 0 | ||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} | ||
--- !u!114 &4789057121056509013 | ||
MonoBehaviour: | ||
m_ObjectHideFlags: 0 | ||
m_CorrespondingSourceObject: {fileID: 0} | ||
m_PrefabInstance: {fileID: 0} | ||
m_PrefabAsset: {fileID: 0} | ||
m_GameObject: {fileID: 2471153101020959619} | ||
m_Enabled: 1 | ||
m_EditorHideFlags: 0 | ||
m_Script: {fileID: 11500000, guid: 8d57b4494748e0c418bc48cb73cf28db, type: 3} | ||
m_Name: | ||
m_EditorClassIdentifier: | ||
PlayerStats: | ||
MaxHealth: 0 | ||
StartingWeapons: [] | ||
DefaultPlayerStats: | ||
MaxHealth: 150 | ||
StartingWeapons: | ||
- {fileID: 11400000, guid: a18bccf47773fd34c8715c1dbdb97f52, type: 2} | ||
- {fileID: 11400000, guid: a18bccf47773fd34c8715c1dbdb97f52, type: 2} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.