mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
e4646000f2
* second contact sprites * Started rewriting * Sound stuff * foreigner textbox * default miss message * implement basic player textbox * transparency support for textbox refactor function labels to use C# convention * avoid double function call with mistranslation * add mistranslation textbox * fix logic with trailing translation * auto-positioning of translated text content * auto-hide textboxes on start * icon * Added two new helper functions for pitching with semitones and cents * All new sounds should be in now * bunch of visual fixes * Fixed stuff being innaccurate * Repeating voicelines begone! * Thump sound for bob man * Put an animator on the crowd * Fixed missing sprites * Fixed anim not playing sometimes on barely * Changed length of pass turn event from 0.5 to 1 beat long * Downscaled Sprites yippee * Auto look at * Fixed bob's textbox not appearing sometimes * Fixed some small things --------- Co-authored-by: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com> Co-authored-by: minenice55 <star.elementa@gmail.com> Co-authored-by: Seanski2 <seanbenedit@gmail.com>
81 lines
2.3 KiB
C#
81 lines
2.3 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class WhiteLines : MonoBehaviour
|
|
{
|
|
float speed;
|
|
float startAt = 4.80f;
|
|
float endAt = -3.1f;
|
|
[SerializeField] SpriteRenderer line;
|
|
public int rngEarlyGone, rngMiddleLine;
|
|
[SerializeField] bool isRandomLineMiddle;
|
|
bool checkAnother, checkOnce;
|
|
|
|
void Start()
|
|
{
|
|
//speed = Random.Range(0.005f, 0.007f);
|
|
speed = Random.Range(0.005f, 0.009f);
|
|
rngEarlyGone = Random.Range(0, 5);
|
|
if (isRandomLineMiddle)
|
|
{
|
|
rngMiddleLine = Random.Range(0, 101);
|
|
}
|
|
}
|
|
|
|
void FixedUpdate()
|
|
{
|
|
if (transform.position.y > endAt && !isRandomLineMiddle)
|
|
{
|
|
transform.position += new Vector3(0, -speed * 1f, 0);
|
|
}
|
|
else if (transform.position.y <= endAt && !isRandomLineMiddle)
|
|
{
|
|
speed = Random.Range(0.005f, 0.009f);
|
|
transform.position = new Vector3(0, startAt, 0);
|
|
rngEarlyGone = Random.Range(0, 5);
|
|
}
|
|
|
|
if (rngEarlyGone > 0 && !isRandomLineMiddle)
|
|
{
|
|
line.color += new Color(1f, 1f, 1f, -0.01f);
|
|
if (line.color.a <= 0)
|
|
{
|
|
rngEarlyGone = Random.Range(0, 5);
|
|
line.color = new Color(1f, 1f, 1f, .10f);
|
|
transform.position = new Vector3(0, startAt, 0);
|
|
}
|
|
}
|
|
|
|
if (isRandomLineMiddle)
|
|
{
|
|
if (rngMiddleLine > 1 && !checkAnother)
|
|
{
|
|
rngMiddleLine = Random.Range(0, 101);
|
|
}
|
|
if (rngMiddleLine <= 1)
|
|
{
|
|
line.color += new Color(1f, 1f, 1f, 0.01f);
|
|
checkAnother = true;
|
|
|
|
if (!checkOnce && line.color.a > .5f)
|
|
{
|
|
checkOnce = true;
|
|
}
|
|
}
|
|
if (checkOnce)
|
|
{
|
|
line.color -= new Color(1f, 1f, 1f, 0.02f);
|
|
if (line.color.a <= 0)
|
|
{
|
|
line.color = new Color(1f, 1f, 1f, 0f);
|
|
rngMiddleLine = Random.Range(0, 101);
|
|
transform.position = new Vector3(0, Random.Range(-1, 5));
|
|
checkAnother = false;
|
|
checkOnce = false;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|