Skip to content

Commit

Permalink
Merge branch 'NetStandard' of https://github.com/vchelaru/FlatRedBall
Browse files Browse the repository at this point in the history
…into NetStandard
  • Loading branch information
vchelaru committed Feb 10, 2024
2 parents 87bbf45 + aa58d48 commit e782664
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 9 deletions.
2 changes: 0 additions & 2 deletions Engines/FlatRedBallXNA/FlatRedBall/PositionedObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2025,15 +2025,13 @@ public override string ToString()
}
}

#region XML Docs
/// <summary>
/// Updates the absolute position and rotation using relative values and the Parent PositionedObject.
/// </summary>
/// <remarks>
/// This method recurs up the hierarchical chain calling UpdateDependencies so that the entire family of
/// PositionedObjects is positioned appropriately.
/// </remarks>
#endregion
public virtual void UpdateDependencies(double currentTime)
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@ public static void Embed(List<string> files)
}
}

private static void RemoveEmbeddedFile(string relativePath)
{
FilePath absoluteFile = GlueState.Self.CurrentGlueProjectDirectory + "GlueControl/" + relativePath;

GlueCommands.Self.ProjectCommands.RemoveFromProjects(absoluteFile);
}

private static void SaveEmbeddedFile(string resourcePath)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ private async Task HandlePortOrGenerateCheckedChanged(string propertyName)
else
{
TaskManager.Self.Add(() => EmbeddedCodeManager.RemoveAll(), "Removing Glue Control Code");
TaskManager.Self.Add(() => GlueCallsCodeGenerator.GenerateAll(), "Removing Glue Control Code New");
TaskManager.Self.Add(() => GlueCallsCodeGenerator.RemoveAll(), "Removing Glue Control Code New");

}

Expand Down

0 comments on commit e782664

Please sign in to comment.