- 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
17 lines
461 B
C#
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;
|
|
}
|
|
}
|