You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

63 lines
1.8 KiB

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(menuName = "Major Project/Pick Ups/Shoot Block")]
[System.Serializable]
public class Shoot : LogicBlock
{
[SerializeField]
[Header("Direction to shoot in")]
private Direction Direction;
[SerializeField]
[Header("Projectile to Shoot")]
private Projectile Projectile;
public override Block GetEndBlock(Block startBlock, Transform transform, LayerMask layerMask)
{
return startBlock;
}
protected override IEnumerator BlockLogic(Character player, float animationTime, bool useBlockDirection = false)
{
Projectile newProjectile = Instantiate(Projectile, player.transform.position, player.transform.rotation);
Vector3 direction = Direction.ToVector(player.transform);
yield return newProjectile.StartCoroutine(newProjectile.ProjectileLogic(player, animationTime, direction));
Destroy(newProjectile.gameObject);
}
public override void CopyToken(BlockToken token)
{
base.CopyToken(token);
Projectile = Resources.Load<GameObject>(((ShotToken)token).prefabName).GetComponent<Projectile>();
Direction = ((ShotToken)token).direction;
}
public override BlockToken ToToken(BlockToken token = null)
{
if (token == null)
token = new ShotToken(this);
Debug.Log(base.ToToken(token).GetType().Name);
ShotToken retVal = (ShotToken)base.ToToken(token);
retVal.direction = Direction;
retVal.prefabName = Projectile.gameObject.name;
return retVal;
}
}
[System.Serializable]
public class ShotToken : BlockToken
{
public Direction direction;
public string prefabName;
public ShotToken(LogicBlock block) : base(block) { }
}