···5252 [MethodImpl(MethodImplOptions.AggressiveInlining)] set { Pool.Positions[Id] = value; }
5353 }
5454 /// <summary>
5555- /// Sets the world position of the Danmaku during the previous frame. (Internal only setter.)
5555+ /// Gets or sets the world position of the Danmaku during the previous frame.
5656 /// </summary>
5757- public Vector2 OldPosition {
5858- [MethodImpl(MethodImplOptions.AggressiveInlining)] private set { Pool.OldPositions[Id] = value; }
5757+ internal Vector2 OldPosition {
5858+ [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return Pool.OldPositions[Id]; }
5959+ [MethodImpl(MethodImplOptions.AggressiveInlining)] set { Pool.OldPositions[Id] = value; }
5960 }
60616162 /// <summary>