gpt4 book ai didi

c# - 创建协程以淡出不同类型的对象

转载 作者:行者123 更新时间:2023-11-30 20:20:14 24 4
gpt4 key购买 nike

您好,我正在尝试统一创建一个协程来处理各种对象的淡入淡出。到目前为止,我能够获得我想要的不同类型的 alpha 值,但是对于如何在 lerping 之后设置新颜色我处于死胡同。这是我的代码:

public static  IEnumerator FadeTo(float aValue, float aTime,GameObject gameObj)
{
Component[] allComponents = gameObj.GetComponents(typeof(Component));
Component fadableComponent;
Type type = null;
float alpha=0;
foreach(Component c in allComponents)
{
if(c.GetType()==typeof(Image))
{
fadableComponent = c;
alpha = fadableComponent.GetComponent<Image>().color.a;
type = fadableComponent.GetType();
Debug.Log("Found a image");
break;
}
if (c.GetType() == typeof(Renderer))
{
fadableComponent = c;
alpha = fadableComponent.GetComponent<Renderer>().material.color.a;
type = fadableComponent.GetType();
break;
}
if (c.GetType() == typeof(SpriteRenderer))
{
fadableComponent = c;
alpha = fadableComponent.GetComponent<SpriteRenderer>().color.a;
type = fadableComponent.GetType();
break;
}
if(c.GetType()== typeof(CanvasGroup))
{
fadableComponent = c;
alpha = fadableComponent.GetComponent<CanvasGroup>().alpha;
type = fadableComponent.GetType();
}
Debug.Log(alpha.ToString());
}


for (float t = 0.0f; t < 1.0f; t += Time.deltaTime / aTime)
{
Color newColor = new Color(1, 1, 1, Mathf.Lerp(alpha, aValue, t));
gameObj.transform.GetComponent(type) // What now ?!
yield return null;
}
yield return null;
}
}

现在我知道如何通过让我们说另一组“如果”或“不”来做到这一点,但我想避免这种情况。例如我想避免的解决方案我看了一下 iTween 实现。这是我想避免的一个完美示例:

if(target.GetComponent<GUITexture>()){
target.GetComponent<GUITexture>().color=colors[3];
}else if(target.GetComponent<GUIText>()){
target.GetComponent<GUIText>().material.color=colors[3];
}else if(target.GetComponent<Renderer>()){
target.GetComponent<Renderer>().material.color=colors[3];
}else if(target.GetComponent<Light>()){
target.GetComponent<Light>().color=colors[3];
}

这是一团糟,妈妈们的意大利面条。扩展这将是一场噩梦。

最佳答案

可能是你在找

吐温

游戏编程的可卡因!

基本语法是

 time.Tweeng( do something )

所以(伪代码)

StartCoroutine( 2f.Tweeng( .. move the ball .. ) );
StartCoroutine( .5f.Tweeng( .. spin the spaceship .. ) );
StartCoroutine( 1f.Tweeng( .. fade the text .. ) );

这些例子是,

  • 在两秒内移动球
  • 在 1/2 秒内旋转宇宙飞船
  • 在一秒钟内淡化文本。

更多...

// tweeng z to 20 degrees in .12 seconds
StartCoroutine(.12f.Tweeng( (t)=>transform.Eulers(0f,0f,t), 0f,20f) );

// fade in alpha in .75 seconds
StartCoroutine(.75f.Tweeng( (u)=>{c.a=u;s.color=c;}, 0f,1f) );

// duck volume..
StartCoroutine( .3f.Tweeng( x=>{current.volume=x;}, current.volume, 0f) );

// move something..
StartCoroutine(secs.Tweeng( (p)=>parked.transform.position=p,
parked.transform.position,
landing.transform.position) );

// twist image
yield return StartCoroutine( .3f.Tweeng(
(u)=>polaroid.localEulerAngles = new Vector3(0f,0f,u),
0f,9f) );

你可以补间任何东西,当然包括淡化。

Tweeng 的基本代码库:

只需将其放入文件 Extns.cs 中即可:

public static class Extns
{
public static IEnumerator Tweeng( this float duration,
System.Action<float> var, float aa, float zz )
{
float sT = Time.time;
float eT = sT + duration;

while (Time.time < eT)
{
float t = (Time.time-sT)/duration;
var( Mathf.SmoothStep(aa, zz, t) );
yield return null;
}

var(zz);
}

public static IEnumerator Tweeng( this float duration,
System.Action<Vector3> var, Vector3 aa, Vector3 zz )
{
float sT = Time.time;
float eT = sT + duration;

while (Time.time < eT)
{
float t = (Time.time-sT)/duration;
var( Vector3.Lerp(aa, zz, Mathf.SmoothStep(0f, 1f, t) ) );
yield return null;
}

var(zz);
}
}

(请注意,这些示例包括平滑。在某些情况下您可能需要不平滑。事实上,在现在的项目中,我们总是同时使用“Tweeng”和“SmoothedTweeng”。)

(如果您有兴趣,可以使用泛型方法 - 令人着迷 QA on that。)

Tweeng - 它可以挽救您的生命!

关于c# - 创建协程以淡出不同类型的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37223919/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com