summaryrefslogtreecommitdiffstats
path: root/scene/3d/sprite_3d.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Optimise Object's `get_argument_options`Micky2024-02-291-0/+3
|
* Revert "Update Node::get_configuration_warnings signature"Rémi Verschelde2024-02-171-1/+1
| | | | This reverts commit d3852deaa450d77edb30df2bb1c77bd7bc45befc.
* Update Node::get_configuration_warnings signatureRedMser2024-02-081-1/+1
|
* Make gizmo plugin handle SpriteBase3D instead of Sprite3Dkleonc2023-10-061-2/+0
|
* Vertex and attribute compression to reduce the size of the vertex format.clayjohn2023-10-051-0/+1
| | | | | | | | | | | | | This allows Godot to automatically compress meshes to save a lot of bandwidth. In general, this requires no interaction from the user and should result in no noticable quality loss. This scheme is not backwards compatible, so we have provided an upgrade mechanism, and a mesh versioning mechanism. Existing meshes can still be used as a result, but users can get a performance boost by reimporting assets.
* [Sprite3D/Label3D] Expose alpha antialiasing properties.bruvzg2023-01-311-0/+8
|
* Merge pull request #71964 from bruvzg/mat_keyRémi Verschelde2023-01-301-1/+11
|\ | | | | | | Fix unsafe murmur3 hash use for the default material keys, expose alpha hash transparency mode for default materials and Label3D and Sprite3D.
| * Fix unsafe murmur3 hash use for the default material keys, expose alpha hash ↵bruvzg2023-01-241-1/+11
| | | | | | | | transparency mode for default materials and Label3D and Sprite3D.
* | Make AnimatedSprite's playback API consistent with AnimationPlayerSilc Renew2023-01-261-8/+23
|/
* Merge pull request #65609 from dalexeev/animated-spriteRémi Verschelde2023-01-051-3/+3
|\ | | | | | | `AnimatedSprite{2D,3D}` improvements
| * `AnimatedSprite{2D,3D}` improvementsDanil Alexeev2023-01-051-3/+3
| | | | | | | | | | * Add support for individual frame duration to `SpriteFrames`. * Various minor improvements.
* | One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
|/ | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Merge pull request #66064 from kleonc/sprite3d-fix-drawing-with-vertical-marginsRémi Verschelde2022-09-201-6/+4
|\ | | | | `Sprite3D`/`AnimatedSprite3D` Fix drawing `AtlasTexture`s with vertical margins differently than in 2D
| * Move duplicated drawing code from `Sprite3D`/`AnimatedSprite3D` to ↵kleonc2022-09-181-6/+4
| | | | | | | | `SpriteBase3D`
* | Change return type of `get_configuration_warnings` to `PackedStringArray`Marc Gilleron2022-09-191-1/+1
|/
* Allow negative `speed_scale` in AnimatedSprite2D & 3DMicky2022-09-131-1/+2
| | | | | | | If the `speed_scale` is set to a negative value, the animation plays in reverse. The second parameter of `play()` still reverses as before. if `speed_scale` and the second parameter of `play()` is true, the animation plays forward. Also updates the documentation to better describe the pausing and playing behaviour.
* Harmonise AnimatedSprite3D and its 2D counterpartMicky2022-09-091-2/+9
| | | | | | | | Add the following properties to AnimatedSprite3D: - `backwards` parameter in `play()`; - `speed_scale`. Both classes' internals are more similar, down to the line spacings. They've also been updated to be clearer and less inconsistent (e.g. `!frames.is_valid()` -> `frames.is_null()`, use SceneStringNames instead of CoreStringNames, rename the internal _queue_update to _queue_redraw)
* Merge pull request #64157 from Mickeon/remove-mysterious-is-playingRémi Verschelde2022-09-011-2/+2
|\
| * Remove AnimatedSprite3D.`is_playing()` for redundancyMicky2022-08-091-2/+2
| | | | | | | | Also removes the underscore prefix from `_set_playing()` and `_is_playing()`
* | Make `_validate_property` a multilevel methodYuri Sizov2022-08-221-2/+2
|/
* Add autocompletion for AnimatedSprite.play()Haoyu Qiu2022-05-051-0/+2
|
* Style: Partially apply clang-tidy's `cppcoreguidelines-pro-type-member-init`Rémi Verschelde2022-05-021-4/+4
| | | | | | | | | | | Didn't commit all the changes where it wants to initialize a struct with `{}`. Should be reviewed in a separate PR. Option `IgnoreArrays` enabled for now to be conservative, can be disabled to see if it proposes more useful changes. Also fixed manually a handful of other missing initializations / moved some from constructors.
* Expose Label3D and Sprite*3D material render priority properties.bruvzg2022-04-301-0/+4
|
* Implement Label3D node.bruvzg2022-04-221-0/+7
| | | | | | | | | Add "generate_mipmap" font import option. Add some missing features to the Sprite3D. Move BiDi override code from Control to TextServer. Add functions to access TextServer font cache textures. Add MSDF related flags and shader to the standard material. Change standard material cache to use HashMap instead of Vector.
* Discern between virtual and abstract class bindingsreduz2022-03-101-1/+1
| | | | | | | | | | | | | | * Previous "virtual" classes (which can't be instantiated) are not corretly named "abstract". * Added a new "virtual" category for classes, they can't be instantiated from the editor, but can be inherited from script and extensions. * Converted a large amount of classes from "abstract" to "virtual" where it makes sense. Most classes that make sense have been converted. Missing: * Physics servers * VideoStream * Script* classes. which will go in a separate PR due to the complexity involved.
* Merge pull request #55446 from Calinou/spritebase3d-remove-opacityRémi Verschelde2022-01-121-4/+0
|\
| * Remove redundant SpriteBase3D `opacity` propertyHugo Locurcio2021-11-291-4/+0
| | | | | | | | | | | | | | The `opacity` property is superseded by the GeometryInstance3D `transparency` property. It works the opposite way (0.0 is opaque, 1.0 is fully transparent), but provides the same behavior in a more universal manner.
* | Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
|/ | | | Happy new year to the wonderful Godot community!
* Remove unimplemented methodsMarcel Admiraal2021-10-211-6/+0
|
* Fix some unnecessary includesAaron Franke2021-08-131-1/+1
|
* Use doubles for time in many other placesAaron Franke2021-08-091-1/+1
|
* Use real_t in 3D nodesAaron Franke2021-08-031-3/+3
|
* Deprecate ImmediateGeometryreduz2021-06-301-19/+30
| | | | | | | | | * Removed entirely from RenderingServer. * Replaced by ImmediateMesh resource. * ImmediateMesh replaces ImmediateGeometry, but could use more optimization in the future. * Sprite3D and AnimatedSprite3D work again, ported from Godot 3.x (though a lot of work was needed to adapt them to Godot 4). * RootMotionView works again. * Polygon3D editor works again.
* Change frame_coords to Vector2ikobewi2021-05-231-2/+2
|
* Use Array for node configuration warningsNathan Franke2021-04-111-1/+1
| | | | Previously, the warnings were passed as a string and delimitation of which were hard coded at each implementation.
* Style: Apply clang-tidy's `modernize-use-bool-literals`Rémi Verschelde2021-04-051-2/+2
|
* Merge pull request #47001 from madmiraal/rename-sprite_2d-region_enabledRémi Verschelde2021-03-201-5/+5
|\ | | | | Rename Sprite.region_enabled getter and setter methods to match properties
| * Rename Sprite.region_enabled getter and setter to match propertiesMarcel Admiraal2021-03-141-5/+5
| | | | | | | | | | Also renames Sprite2D.region_filter_clip property and its setter to region_filter_clip_enabled and set_region_filter_clip_enabled.
* | Move SpriteFrames to its own file in the resources folderAaron Franke2021-03-161-1/+1
|/
* Initialize class variables with default values in scene/ [1/2]Rafał Mikrut2021-02-071-20/+20
|
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Add override keywords.Marcel Admiraal2020-07-101-9/+9
|
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-3/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* Renamed 2D and 3D nodes to make their types explicitJuan Linietsky2020-03-271-4/+4
| | | | Fixes #30736.
* Signals: Port more uses of connect_compatRémi Verschelde2020-02-281-0/+2
| | | | | | | | | Those were problematic as they call a method of their parent class, but callable_mp does not allow that unless it's public. To solve it, we declare a local class that calls the parent class' method, which now needs to be protected to be accessible in the derived class.
* PoolVector is gone, replaced by VectorJuan Linietsky2020-02-181-1/+1
| | | | | Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector<Type>`.
* Modernized default 3D material, fixes material bugs.Juan Linietsky2020-02-111-3/+3
|
* Texture refactorJuan Linietsky2020-02-111-3/+3
| | | | | | | | -Texture renamed to Texture2D -TextureLayered as base now inherits 2Darray, cubemap and cubemap array -Removed all references to flags in textures (they will go in the shader) -Texture3D gone for now (will come back later done properly) -Create base rasterizer for RenderDevice, RasterizerRD