Types/RotatedSprite: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
No edit summary
(Removed old prototype docs)
Tag: Replaced
 
(21 intermediate revisions by 5 users not shown)
Line 1: Line 1:
== Basics ==
<div class="stub"><p>'''The prototype docs have moved to a new website with an improved format.''' This documentation page can now be found here: [https://lua-api.factorio.com/latest/types/RotatedSprite.html https://lua-api.factorio.com/latest/types/RotatedSprite.html]
Specifies series of sprites used to visualise different rotations of the object.


== Properties ==
</p><p>This wiki page is no longer updated and '''will be removed at some point in the future''', so please update your browser bookmarks or other links that sent you here. If you'd like to contribute to the new docs, you can leave your feedback [https://forums.factorio.com/viewforum.php?f=233 on the forums].</p></div>
=== filename ===
'''Type''':[[Types/FileName]]
=== priority ===
'''Type''':[[Types/string]]
 
Possible values:
*extra-high
*high
*medium
*low
*very low
=== frame_width ===
'''Type''': [[Types/unsigned]]
 
Width of single frame in pixels.
=== frame_height ===
'''Type''': [[Types/unsigned]]
 
Height of single frame in pixels
=== x ===
'''Type''': [[Types/unsigned]]
 
'''Default''': 0
 
Horizontal position of the animation in the source file in pixels.
 
=== y ===
'''Type''': [[Types/unsigned]]
 
'''Default''': 0
 
Vertical position of the animation in the source file in pixels.
 
=== shift ===
'''Type''': [[Types/Vector]]
 
'''Default''': 0
=== scale ===
'''Type''': [[Types/double]]
 
'''Default''': 1
 
Values different than 1 specify the scale of the picture on default zoom.
Scale 2 means that the picture will be 2 times bigger on screen (and more pixelated).
 
== Example ==
    pictures =
    {
      filename = "__base__/graphics/entity/radar/radar.png",
      priority = "low",
      frame_width = 169,
      frame_height = 140,
      axially_symmetrical = false,
      apply_proejction = false,
      direction_count = 64,
      line_length = 8,
      shift = {1.15, 0.75}
    }

Latest revision as of 14:32, 25 October 2024

The prototype docs have moved to a new website with an improved format. This documentation page can now be found here: https://lua-api.factorio.com/latest/types/RotatedSprite.html

This wiki page is no longer updated and will be removed at some point in the future, so please update your browser bookmarks or other links that sent you here. If you'd like to contribute to the new docs, you can leave your feedback on the forums.