Pedro Gomes d89d22a267 New enemy type + Bugfix & Quality of life changes
- New enemy Crazied Orc Grunt basic + Boss
- New abilities for crazied orc grunt
- bugfix Damage input modifier effect instance not using stat scaling properly
- updated damage input/output modifier effects scaling
- Added QoL shift+click on stat point allocation button to add +10 in a single click
2025-01-11 23:50:11 +00:00

17 lines
461 B
C#

using Photon.Pun;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FakeProceduralMap : MonoBehaviour
{
[SerializeField] private List<Transform> possibleMaps = new List<Transform>();
[SerializeField] private Transform riftMapPivot;
private void Awake()
{
if (PhotonNetwork.IsMasterClient)
riftMapPivot.rotation = possibleMaps[Random.Range(0, possibleMaps.Count)].rotation;
}
}