mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Rename methods
This commit is contained in:
@ -51,7 +51,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
|
||||
MakeChildAlive(pointPool);
|
||||
}
|
||||
|
||||
public void AddFollowPoints2(OsuHitObject hitObject)
|
||||
public void AddFollowPoints(OsuHitObject hitObject)
|
||||
{
|
||||
addEntry(hitObject);
|
||||
|
||||
@ -60,7 +60,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
|
||||
startTimeMap[hitObject] = startTimeBindable;
|
||||
}
|
||||
|
||||
public void RemoveFollowPoints2(OsuHitObject hitObject)
|
||||
public void RemoveFollowPoints(OsuHitObject hitObject)
|
||||
{
|
||||
removeEntry(hitObject);
|
||||
|
||||
|
@ -125,13 +125,13 @@ namespace osu.Game.Rulesets.Osu.UI
|
||||
protected override void OnHitObjectAdded(HitObject hitObject)
|
||||
{
|
||||
base.OnHitObjectAdded(hitObject);
|
||||
followPoints.AddFollowPoints2((OsuHitObject)hitObject);
|
||||
followPoints.AddFollowPoints((OsuHitObject)hitObject);
|
||||
}
|
||||
|
||||
protected override void OnHitObjectRemoved(HitObject hitObject)
|
||||
{
|
||||
base.OnHitObjectRemoved(hitObject);
|
||||
followPoints.RemoveFollowPoints2((OsuHitObject)hitObject);
|
||||
followPoints.RemoveFollowPoints((OsuHitObject)hitObject);
|
||||
}
|
||||
|
||||
public void OnHitObjectLoaded(Drawable drawable)
|
||||
|
Reference in New Issue
Block a user