Skip to content

Commit 856ad33

Browse files
committed
Remove editor only property tweens
1 parent d7be2b3 commit 856ad33

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

Runtime/Extensions/Rendering/LightTweens.cs

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ public static Tween TweenRange(this Light light, float to, float duration) =>
2929
setter: range => light.range = range,
3030
to, duration).SetTarget(light);
3131

32-
public static Tween TweenShadowRadius(this Light light, float to, float duration) =>
33-
Tweening.To(getter: () => light.shadowRadius,
34-
setter: shadowRadius => light.shadowRadius = shadowRadius,
35-
to, duration).SetTarget(light);
36-
3732
public static Tween TweenShadowStrength(this Light light, float to, float duration) =>
3833
Tweening.To(getter: () => light.shadowStrength,
3934
setter: shadowStrength => light.shadowStrength = shadowStrength,
@@ -54,11 +49,6 @@ public static Tween TweenShadowNearPlane(this Light light, float to, float durat
5449
setter: shadowNearPlane => light.shadowNearPlane = shadowNearPlane,
5550
to, duration).SetTarget(light);
5651

57-
public static Tween TweenShadowAngle(this Light light, float to, float duration) =>
58-
Tweening.To(getter: () => light.shadowAngle,
59-
setter: shadowAngle => light.shadowAngle = shadowAngle,
60-
to, duration).SetTarget(light);
61-
6252
public static Tween TweenSpotAngle(this Light light, float to, float duration) =>
6353
Tweening.To(getter: () => light.spotAngle,
6454
setter: spotAngle => light.spotAngle = spotAngle,
@@ -69,11 +59,6 @@ public static Tween TweenInnerSpotAngle(this Light light, float to, float durati
6959
setter: innerSpotAngle => light.innerSpotAngle = innerSpotAngle,
7060
to, duration).SetTarget(light);
7161

72-
public static Tween TweenAreaSize(this Light light, Vector2 to, float duration) =>
73-
Tweening.To(getter: () => light.areaSize,
74-
setter: areaSize => light.areaSize = areaSize,
75-
to, duration).SetTarget(light);
76-
7762
public static Tween TweenCookieSize(this Light light, float to, float duration) =>
7863
Tweening.To(getter: () => light.cookieSize,
7964
setter: cookieSize => light.cookieSize = cookieSize,

0 commit comments

Comments
 (0)