Network fixes 2
This commit is contained in:
parent
1030fd2fb9
commit
2bb8baa23c
@ -1,3 +1,4 @@
|
|||||||
|
using FishNet.Object;
|
||||||
using TMPro;
|
using TMPro;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.UI;
|
using UnityEngine.UI;
|
||||||
@ -46,7 +47,9 @@ namespace Item
|
|||||||
isEnabled = true;
|
isEnabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public abstract bool Interact();
|
public abstract bool Interact();
|
||||||
|
[ServerRpc]
|
||||||
public abstract bool Interact(ref Inventory inventory, ref HeavyInteractableItem heavyInvent);
|
public abstract bool Interact(ref Inventory inventory, ref HeavyInteractableItem heavyInvent);
|
||||||
|
|
||||||
protected void BaseAwake()
|
protected void BaseAwake()
|
||||||
|
@ -138,7 +138,7 @@ namespace Item
|
|||||||
shootLight.gameObject.SetActive(true);
|
shootLight.gameObject.SetActive(true);
|
||||||
|
|
||||||
// var projectile = Instantiate(projectilePrefab, bulletSpawnPoint);
|
// var projectile = Instantiate(projectilePrefab, bulletSpawnPoint);
|
||||||
var projectile = Instantiate(projectilePrefab, bulletSpawnPoint);
|
var projectile = Instantiate(projectilePrefab, bulletSpawnPoint);
|
||||||
InstanceFinder.ServerManager.Spawn(projectile); //var projectile = Instantiate(projectilePrefab, bulletSpawnPoint);
|
InstanceFinder.ServerManager.Spawn(projectile); //var projectile = Instantiate(projectilePrefab, bulletSpawnPoint);
|
||||||
|
|
||||||
//InstanceFinder.ServerManager.Spawn(projectile);
|
//InstanceFinder.ServerManager.Spawn(projectile);
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
using FishNet.Object;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace Player
|
namespace Player
|
||||||
@ -46,7 +47,7 @@ namespace Player
|
|||||||
|
|
||||||
timeSinceLastShot -= Time.deltaTime;
|
timeSinceLastShot -= Time.deltaTime;
|
||||||
}
|
}
|
||||||
|
[ServerRpc]
|
||||||
public void ShotFired()
|
public void ShotFired()
|
||||||
{
|
{
|
||||||
timeSinceLastShot = shootNoiseDuration;
|
timeSinceLastShot = shootNoiseDuration;
|
||||||
|
@ -198,8 +198,9 @@ public class PlayerInteractionHandler : NetworkBehaviour
|
|||||||
if (Input.GetButtonDown("Fire3")&&inputEnbaled)
|
if (Input.GetButtonDown("Fire3")&&inputEnbaled)
|
||||||
if (!IsCarrying)
|
if (!IsCarrying)
|
||||||
{
|
{
|
||||||
if(!IsServer)
|
|
||||||
SwitchWeaponMode();
|
SwitchWeaponMode();
|
||||||
|
if (!IsServer) {
|
||||||
GunEnabled = !GunEnabled;
|
GunEnabled = !GunEnabled;
|
||||||
if (!GunEnabled)
|
if (!GunEnabled)
|
||||||
pistol.Disable();
|
pistol.Disable();
|
||||||
@ -208,6 +209,8 @@ public class PlayerInteractionHandler : NetworkBehaviour
|
|||||||
pistol.Enable();
|
pistol.Enable();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
if (GunEnabled)
|
if (GunEnabled)
|
||||||
{
|
{
|
||||||
DisableFlashlight();
|
DisableFlashlight();
|
||||||
|
Reference in New Issue
Block a user