WavesSystems.Projector 3.0.4.1

dotnet add package WavesSystems.Projector --version 3.0.4.1
NuGet\Install-Package WavesSystems.Projector -Version 3.0.4.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WavesSystems.Projector" Version="3.0.4.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WavesSystems.Projector --version 3.0.4.1
#r "nuget: WavesSystems.Projector, 3.0.4.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install WavesSystems.Projector as a Cake Addin
#addin nuget:?package=WavesSystems.Projector&version=3.0.4.1

// Install WavesSystems.Projector as a Cake Tool
#tool nuget:?package=WavesSystems.Projector&version=3.0.4.1

Badge AUR license badge Badge

Waves Projector

A WPF UI Element that reproduces animations based on sprite sheet files.

Content

License

This project is licensed under the terms of Apache 2.0 license.

The Projector

[ You can check the full documentation in wavessystems.com.br/projector. ]

I worked to make it as familiar as possible with other WPF controls, so using this control is quite simple! Check the following steps:

Usage

First thing, define the namespace in the parent object attributes.

xmlns:visual="clr-namespace:Waves.Visual;assembly=WavesSystems.Projector"

Right! Now you can place the element like this:

<visual:Projector FrameCount="293"
                  ColumnCount="15"
                  Source="/Assets/nooooooo.png"
                  Width="800"
                  Height="450" />

You got to define the URI of the sprite sheet and then define the number of frames and the number of columns. The number of rows, let me automatically calculate for you.

Please do not forget: the frame and column count are especially important to run the animation properly. Mistaking these property values will create a visual mess.

I have not implemented the Width and Height automatic calculation for when these properties are set as "Auto" just like when you set source of an Image object, but it is on the plan.

Properties

This control implements some properties from Timeline, so we have basic animation properties such as FillBehavior, RepeatBehavior and AutoReverse, as shown in the following table:

Property Description
AutoReverse Gets or sets a value that indicates whether the animation plays in reverse after it completes a forward iteration.
AutoStart Gets of sets a value that indicates whether the animation starts automatically after loading.
ColumnCount Gets or Sets the amount of columns in the sprite animation sheet.
Duration Gets the length of time for which this Animation plays, not counting repetitions.
FillBehavior Gets or sets a value that specifies how the animation behaves after it reaches the end of its active period.
FrameCount Gets or Sets the amount of frames in the sprite animation file.
FrameRate Gets or Sets the frame per second rate of animation.
IsPlaying Gets or sets a value that indicates whether the animation is running.
RepeatBehavior Gets or sets the repeating behavior of this animation.
Source Gets or Sets the animated image displayed in the view.
TotalDuration Gets the length of time for which this Animation plays, counting repetitions.

Methods

Method Description
BeginAnimation() Starts or resumes the animation.
BeginAnimationAsync() Starts or resumes the animation and holds the execution until the animation completes its active period.
Dispose() Releases all resources used by the Projector
StopAnimation() Stops the animation.

Events

Event Description
Completed Occurs when this animation has completely finished playing and will no longer enter its active period.

Release Notes

v3.0.3.0:

  • Restored repeat behavior feature.
Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 is compatible.  net463 was computed.  net47 is compatible.  net471 was computed.  net472 was computed.  net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.5.2

    • No dependencies.
  • .NETFramework 4.6.2

    • No dependencies.
  • .NETFramework 4.7

    • No dependencies.
  • .NETFramework 4.8

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.4.1 167 11/14/2023
3.0.3.1 219 7/10/2023
3.0.3 225 2/13/2023
3.0.2.1 218 2/12/2023
3.0.2 233 2/12/2023
3.0.1.4 280 12/19/2022
3.0.1.3 264 12/19/2022
3.0.1.2 264 12/18/2022
3.0.1 288 12/18/2022
2.1.0 406 12/17/2022
1.0.6.1 411 12/14/2022

Includes:
     * Optimize cpu usage when stopped.