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.
24 lines
688 B
24 lines
688 B
using System;
|
|
using UnityEngine;
|
|
using UnityEngine.Rendering;
|
|
|
|
namespace UnityEngine.Rendering.Tests
|
|
{
|
|
internal class CopyPasteTestComponent3 : CopyPasteTestComponent1
|
|
{
|
|
public ColorParameter p31 = new ColorParameter(Color.black);
|
|
|
|
public new CopyPasteTestComponent3 WithModifiedValues()
|
|
{
|
|
base.WithModifiedValues();
|
|
p31.value = Color.green;
|
|
return this;
|
|
}
|
|
|
|
public void AssertEquality(CopyPasteTestComponent3 other, Action<object, object> assertionFunction)
|
|
{
|
|
base.AssertEquality(other, assertionFunction);
|
|
assertionFunction(p31.value, other.p31.value);
|
|
}
|
|
}
|
|
}
|