Skip to content

Commit aa85881

Browse files
Remove hasDynamicSourceCount
This method is really specific to VFXDataParticle, it doesn't require any abstraction.
1 parent 5854147 commit aa85881

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

com.unity.visualeffectgraph/Editor/Data/VFXData.cs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,6 @@ public virtual uint staticSourceCount
3434
}
3535
}
3636

37-
public virtual bool hasDynamicSourceCount
38-
{
39-
get
40-
{
41-
return false;
42-
}
43-
}
44-
4537
public IEnumerable<VFXContext> owners
4638
{
4739
get { return m_Owners; }

com.unity.visualeffectgraph/Editor/Data/VFXDataParticle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ public override uint staticSourceCount
399399
}
400400
}
401401

402-
public override bool hasDynamicSourceCount
402+
public bool hasDynamicSourceCount
403403
{
404404
get
405405
{

0 commit comments

Comments
 (0)