12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244 |
- /*************************************************************************/
- /* sprite_3d.cpp */
- /*************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* https://godotengine.org */
- /*************************************************************************/
- /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
- /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
- /* */
- /* Permission is hereby granted, free of charge, to any person obtaining */
- /* a copy of this software and associated documentation files (the */
- /* "Software"), to deal in the Software without restriction, including */
- /* without limitation the rights to use, copy, modify, merge, publish, */
- /* distribute, sublicense, and/or sell copies of the Software, and to */
- /* permit persons to whom the Software is furnished to do so, subject to */
- /* the following conditions: */
- /* */
- /* The above copyright notice and this permission notice shall be */
- /* included in all copies or substantial portions of the Software. */
- /* */
- /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
- /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
- /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
- /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
- /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
- /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
- /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
- /*************************************************************************/
- #include "sprite_3d.h"
- #include "core/core_string_names.h"
- #include "scene/scene_string_names.h"
- Color SpriteBase3D::_get_color_accum() {
- if (!color_dirty) {
- return color_accum;
- }
- if (parent_sprite) {
- color_accum = parent_sprite->_get_color_accum();
- } else {
- color_accum = Color(1, 1, 1, 1);
- }
- color_accum.r *= modulate.r;
- color_accum.g *= modulate.g;
- color_accum.b *= modulate.b;
- color_accum.a *= modulate.a;
- color_dirty = false;
- return color_accum;
- }
- void SpriteBase3D::_propagate_color_changed() {
- if (color_dirty) {
- return;
- }
- color_dirty = true;
- _queue_update();
- for (SpriteBase3D *&E : children) {
- E->_propagate_color_changed();
- }
- }
- void SpriteBase3D::_notification(int p_what) {
- if (p_what == NOTIFICATION_ENTER_TREE) {
- if (!pending_update) {
- _im_update();
- }
- parent_sprite = Object::cast_to<SpriteBase3D>(get_parent());
- if (parent_sprite) {
- pI = parent_sprite->children.push_back(this);
- }
- }
- if (p_what == NOTIFICATION_EXIT_TREE) {
- if (parent_sprite) {
- parent_sprite->children.erase(pI);
- pI = nullptr;
- parent_sprite = nullptr;
- }
- }
- }
- void SpriteBase3D::set_centered(bool p_center) {
- centered = p_center;
- _queue_update();
- }
- bool SpriteBase3D::is_centered() const {
- return centered;
- }
- void SpriteBase3D::set_offset(const Point2 &p_offset) {
- offset = p_offset;
- _queue_update();
- }
- Point2 SpriteBase3D::get_offset() const {
- return offset;
- }
- void SpriteBase3D::set_flip_h(bool p_flip) {
- hflip = p_flip;
- _queue_update();
- }
- bool SpriteBase3D::is_flipped_h() const {
- return hflip;
- }
- void SpriteBase3D::set_flip_v(bool p_flip) {
- vflip = p_flip;
- _queue_update();
- }
- bool SpriteBase3D::is_flipped_v() const {
- return vflip;
- }
- void SpriteBase3D::set_modulate(const Color &p_color) {
- modulate = p_color;
- _propagate_color_changed();
- _queue_update();
- }
- Color SpriteBase3D::get_modulate() const {
- return modulate;
- }
- void SpriteBase3D::set_pixel_size(real_t p_amount) {
- pixel_size = p_amount;
- _queue_update();
- }
- real_t SpriteBase3D::get_pixel_size() const {
- return pixel_size;
- }
- void SpriteBase3D::set_axis(Vector3::Axis p_axis) {
- ERR_FAIL_INDEX(p_axis, 3);
- axis = p_axis;
- _queue_update();
- }
- Vector3::Axis SpriteBase3D::get_axis() const {
- return axis;
- }
- void SpriteBase3D::_im_update() {
- _draw();
- pending_update = false;
- //texture->draw_rect_region(ci,dst_rect,src_rect,modulate);
- }
- void SpriteBase3D::_queue_update() {
- if (pending_update) {
- return;
- }
- triangle_mesh.unref();
- update_gizmos();
- pending_update = true;
- call_deferred(SceneStringNames::get_singleton()->_im_update);
- }
- AABB SpriteBase3D::get_aabb() const {
- return aabb;
- }
- Vector<Face3> SpriteBase3D::get_faces(uint32_t p_usage_flags) const {
- return Vector<Face3>();
- }
- Ref<TriangleMesh> SpriteBase3D::generate_triangle_mesh() const {
- if (triangle_mesh.is_valid()) {
- return triangle_mesh;
- }
- Vector<Vector3> faces;
- faces.resize(6);
- Vector3 *facesw = faces.ptrw();
- Rect2 final_rect = get_item_rect();
- if (final_rect.size.x == 0 || final_rect.size.y == 0) {
- return Ref<TriangleMesh>();
- }
- real_t pixel_size = get_pixel_size();
- Vector2 vertices[4] = {
- (final_rect.position + Vector2(0, final_rect.size.y)) * pixel_size,
- (final_rect.position + final_rect.size) * pixel_size,
- (final_rect.position + Vector2(final_rect.size.x, 0)) * pixel_size,
- final_rect.position * pixel_size,
- };
- int x_axis = ((axis + 1) % 3);
- int y_axis = ((axis + 2) % 3);
- if (axis != Vector3::AXIS_Z) {
- SWAP(x_axis, y_axis);
- for (int i = 0; i < 4; i++) {
- if (axis == Vector3::AXIS_Y) {
- vertices[i].y = -vertices[i].y;
- } else if (axis == Vector3::AXIS_X) {
- vertices[i].x = -vertices[i].x;
- }
- }
- }
- static const int indices[6] = {
- 0, 1, 2,
- 0, 2, 3
- };
- for (int j = 0; j < 6; j++) {
- int i = indices[j];
- Vector3 vtx;
- vtx[x_axis] = vertices[i][0];
- vtx[y_axis] = vertices[i][1];
- facesw[j] = vtx;
- }
- triangle_mesh = Ref<TriangleMesh>(memnew(TriangleMesh));
- triangle_mesh->create(faces);
- return triangle_mesh;
- }
- void SpriteBase3D::set_draw_flag(DrawFlags p_flag, bool p_enable) {
- ERR_FAIL_INDEX(p_flag, FLAG_MAX);
- flags[p_flag] = p_enable;
- _queue_update();
- }
- bool SpriteBase3D::get_draw_flag(DrawFlags p_flag) const {
- ERR_FAIL_INDEX_V(p_flag, FLAG_MAX, false);
- return flags[p_flag];
- }
- void SpriteBase3D::set_alpha_cut_mode(AlphaCutMode p_mode) {
- ERR_FAIL_INDEX(p_mode, 3);
- alpha_cut = p_mode;
- _queue_update();
- }
- SpriteBase3D::AlphaCutMode SpriteBase3D::get_alpha_cut_mode() const {
- return alpha_cut;
- }
- void SpriteBase3D::set_billboard_mode(StandardMaterial3D::BillboardMode p_mode) {
- ERR_FAIL_INDEX(p_mode, 3);
- billboard_mode = p_mode;
- _queue_update();
- }
- StandardMaterial3D::BillboardMode SpriteBase3D::get_billboard_mode() const {
- return billboard_mode;
- }
- void SpriteBase3D::_bind_methods() {
- ClassDB::bind_method(D_METHOD("set_centered", "centered"), &SpriteBase3D::set_centered);
- ClassDB::bind_method(D_METHOD("is_centered"), &SpriteBase3D::is_centered);
- ClassDB::bind_method(D_METHOD("set_offset", "offset"), &SpriteBase3D::set_offset);
- ClassDB::bind_method(D_METHOD("get_offset"), &SpriteBase3D::get_offset);
- ClassDB::bind_method(D_METHOD("set_flip_h", "flip_h"), &SpriteBase3D::set_flip_h);
- ClassDB::bind_method(D_METHOD("is_flipped_h"), &SpriteBase3D::is_flipped_h);
- ClassDB::bind_method(D_METHOD("set_flip_v", "flip_v"), &SpriteBase3D::set_flip_v);
- ClassDB::bind_method(D_METHOD("is_flipped_v"), &SpriteBase3D::is_flipped_v);
- ClassDB::bind_method(D_METHOD("set_modulate", "modulate"), &SpriteBase3D::set_modulate);
- ClassDB::bind_method(D_METHOD("get_modulate"), &SpriteBase3D::get_modulate);
- ClassDB::bind_method(D_METHOD("set_pixel_size", "pixel_size"), &SpriteBase3D::set_pixel_size);
- ClassDB::bind_method(D_METHOD("get_pixel_size"), &SpriteBase3D::get_pixel_size);
- ClassDB::bind_method(D_METHOD("set_axis", "axis"), &SpriteBase3D::set_axis);
- ClassDB::bind_method(D_METHOD("get_axis"), &SpriteBase3D::get_axis);
- ClassDB::bind_method(D_METHOD("set_draw_flag", "flag", "enabled"), &SpriteBase3D::set_draw_flag);
- ClassDB::bind_method(D_METHOD("get_draw_flag", "flag"), &SpriteBase3D::get_draw_flag);
- ClassDB::bind_method(D_METHOD("set_alpha_cut_mode", "mode"), &SpriteBase3D::set_alpha_cut_mode);
- ClassDB::bind_method(D_METHOD("get_alpha_cut_mode"), &SpriteBase3D::get_alpha_cut_mode);
- ClassDB::bind_method(D_METHOD("set_billboard_mode", "mode"), &SpriteBase3D::set_billboard_mode);
- ClassDB::bind_method(D_METHOD("get_billboard_mode"), &SpriteBase3D::get_billboard_mode);
- ClassDB::bind_method(D_METHOD("get_item_rect"), &SpriteBase3D::get_item_rect);
- ClassDB::bind_method(D_METHOD("generate_triangle_mesh"), &SpriteBase3D::generate_triangle_mesh);
- ClassDB::bind_method(D_METHOD("_queue_update"), &SpriteBase3D::_queue_update);
- ClassDB::bind_method(D_METHOD("_im_update"), &SpriteBase3D::_im_update);
- ADD_PROPERTY(PropertyInfo(Variant::BOOL, "centered"), "set_centered", "is_centered");
- ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "offset"), "set_offset", "get_offset");
- ADD_PROPERTY(PropertyInfo(Variant::BOOL, "flip_h"), "set_flip_h", "is_flipped_h");
- ADD_PROPERTY(PropertyInfo(Variant::BOOL, "flip_v"), "set_flip_v", "is_flipped_v");
- ADD_PROPERTY(PropertyInfo(Variant::COLOR, "modulate"), "set_modulate", "get_modulate");
- ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "pixel_size", PROPERTY_HINT_RANGE, "0.0001,128,0.0001"), "set_pixel_size", "get_pixel_size");
- ADD_PROPERTY(PropertyInfo(Variant::INT, "axis", PROPERTY_HINT_ENUM, "X-Axis,Y-Axis,Z-Axis"), "set_axis", "get_axis");
- ADD_GROUP("Flags", "");
- ADD_PROPERTY(PropertyInfo(Variant::INT, "billboard", PROPERTY_HINT_ENUM, "Disabled,Enabled,Y-Billboard"), "set_billboard_mode", "get_billboard_mode");
- ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "transparent"), "set_draw_flag", "get_draw_flag", FLAG_TRANSPARENT);
- ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "shaded"), "set_draw_flag", "get_draw_flag", FLAG_SHADED);
- ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "double_sided"), "set_draw_flag", "get_draw_flag", FLAG_DOUBLE_SIDED);
- ADD_PROPERTY(PropertyInfo(Variant::INT, "alpha_cut", PROPERTY_HINT_ENUM, "Disabled,Discard,Opaque Pre-Pass"), "set_alpha_cut_mode", "get_alpha_cut_mode");
- BIND_ENUM_CONSTANT(FLAG_TRANSPARENT);
- BIND_ENUM_CONSTANT(FLAG_SHADED);
- BIND_ENUM_CONSTANT(FLAG_DOUBLE_SIDED);
- BIND_ENUM_CONSTANT(FLAG_MAX);
- BIND_ENUM_CONSTANT(ALPHA_CUT_DISABLED);
- BIND_ENUM_CONSTANT(ALPHA_CUT_DISCARD);
- BIND_ENUM_CONSTANT(ALPHA_CUT_OPAQUE_PREPASS);
- }
- SpriteBase3D::SpriteBase3D() {
- for (int i = 0; i < FLAG_MAX; i++) {
- flags[i] = i == FLAG_TRANSPARENT || i == FLAG_DOUBLE_SIDED;
- }
- material = RenderingServer::get_singleton()->material_create();
- // Set defaults for material, names need to match up those in StandardMaterial3D
- RS::get_singleton()->material_set_param(material, "albedo", Color(1, 1, 1, 1));
- RS::get_singleton()->material_set_param(material, "specular", 0.5);
- RS::get_singleton()->material_set_param(material, "metallic", 0.0);
- RS::get_singleton()->material_set_param(material, "roughness", 1.0);
- RS::get_singleton()->material_set_param(material, "uv1_offset", Vector3(0, 0, 0));
- RS::get_singleton()->material_set_param(material, "uv1_scale", Vector3(1, 1, 1));
- RS::get_singleton()->material_set_param(material, "uv2_offset", Vector3(0, 0, 0));
- RS::get_singleton()->material_set_param(material, "uv2_scale", Vector3(1, 1, 1));
- RS::get_singleton()->material_set_param(material, "alpha_scissor_threshold", 0.98);
- mesh = RenderingServer::get_singleton()->mesh_create();
- PackedVector3Array mesh_vertices;
- PackedVector3Array mesh_normals;
- PackedFloat32Array mesh_tangents;
- PackedColorArray mesh_colors;
- PackedVector2Array mesh_uvs;
- PackedInt32Array indices;
- mesh_vertices.resize(4);
- mesh_normals.resize(4);
- mesh_tangents.resize(16);
- mesh_colors.resize(4);
- mesh_uvs.resize(4);
- // create basic mesh and store format information
- for (int i = 0; i < 4; i++) {
- mesh_normals.write[i] = Vector3(0.0, 0.0, 0.0);
- mesh_tangents.write[i * 4 + 0] = 0.0;
- mesh_tangents.write[i * 4 + 1] = 0.0;
- mesh_tangents.write[i * 4 + 2] = 0.0;
- mesh_tangents.write[i * 4 + 3] = 0.0;
- mesh_colors.write[i] = Color(1.0, 1.0, 1.0, 1.0);
- mesh_uvs.write[i] = Vector2(0.0, 0.0);
- mesh_vertices.write[i] = Vector3(0.0, 0.0, 0.0);
- }
- indices.resize(6);
- indices.write[0] = 0;
- indices.write[1] = 1;
- indices.write[2] = 2;
- indices.write[3] = 0;
- indices.write[4] = 2;
- indices.write[5] = 3;
- Array mesh_array;
- mesh_array.resize(RS::ARRAY_MAX);
- mesh_array[RS::ARRAY_VERTEX] = mesh_vertices;
- mesh_array[RS::ARRAY_NORMAL] = mesh_normals;
- mesh_array[RS::ARRAY_TANGENT] = mesh_tangents;
- mesh_array[RS::ARRAY_COLOR] = mesh_colors;
- mesh_array[RS::ARRAY_TEX_UV] = mesh_uvs;
- mesh_array[RS::ARRAY_INDEX] = indices;
- RS::SurfaceData sd;
- RS::get_singleton()->mesh_create_surface_data_from_arrays(&sd, RS::PRIMITIVE_TRIANGLES, mesh_array);
- mesh_surface_format = sd.format;
- vertex_buffer = sd.vertex_data;
- attribute_buffer = sd.attribute_data;
- sd.material = material;
- RS::get_singleton()->mesh_surface_make_offsets_from_format(sd.format, sd.vertex_count, sd.index_count, mesh_surface_offsets, vertex_stride, attrib_stride, skin_stride);
- RS::get_singleton()->mesh_add_surface(mesh, sd);
- set_base(mesh);
- }
- SpriteBase3D::~SpriteBase3D() {
- RenderingServer::get_singleton()->free(mesh);
- RenderingServer::get_singleton()->free(material);
- }
- ///////////////////////////////////////////
- void Sprite3D::_draw() {
- if (get_base() != get_mesh()) {
- set_base(get_mesh());
- }
- if (!texture.is_valid()) {
- set_base(RID());
- return;
- }
- Vector2 tsize = texture->get_size();
- if (tsize.x == 0 || tsize.y == 0) {
- return;
- }
- Rect2 base_rect;
- if (region) {
- base_rect = region_rect;
- } else {
- base_rect = Rect2(0, 0, texture->get_width(), texture->get_height());
- }
- Size2 frame_size = base_rect.size / Size2(hframes, vframes);
- Point2 frame_offset = Point2(frame % hframes, frame / hframes);
- frame_offset *= frame_size;
- Point2 dest_offset = get_offset();
- if (is_centered()) {
- dest_offset -= frame_size / 2;
- }
- Rect2 src_rect(base_rect.position + frame_offset, frame_size);
- Rect2 final_dst_rect(dest_offset, frame_size);
- Rect2 final_rect;
- Rect2 final_src_rect;
- if (!texture->get_rect_region(final_dst_rect, src_rect, final_rect, final_src_rect)) {
- return;
- }
- if (final_rect.size.x == 0 || final_rect.size.y == 0) {
- return;
- }
- Color color = _get_color_accum();
- real_t pixel_size = get_pixel_size();
- Vector2 vertices[4] = {
- (final_rect.position + Vector2(0, final_rect.size.y)) * pixel_size,
- (final_rect.position + final_rect.size) * pixel_size,
- (final_rect.position + Vector2(final_rect.size.x, 0)) * pixel_size,
- final_rect.position * pixel_size,
- };
- Vector2 src_tsize = tsize;
- // Properly setup UVs for impostor textures (AtlasTexture).
- Ref<AtlasTexture> atlas_tex = texture;
- if (atlas_tex != nullptr) {
- src_tsize[0] = atlas_tex->get_atlas()->get_width();
- src_tsize[1] = atlas_tex->get_atlas()->get_height();
- }
- Vector2 uvs[4] = {
- final_src_rect.position / src_tsize,
- (final_src_rect.position + Vector2(final_src_rect.size.x, 0)) / src_tsize,
- (final_src_rect.position + final_src_rect.size) / src_tsize,
- (final_src_rect.position + Vector2(0, final_src_rect.size.y)) / src_tsize,
- };
- if (is_flipped_h()) {
- SWAP(uvs[0], uvs[1]);
- SWAP(uvs[2], uvs[3]);
- }
- if (is_flipped_v()) {
- SWAP(uvs[0], uvs[3]);
- SWAP(uvs[1], uvs[2]);
- }
- Vector3 normal;
- int axis = get_axis();
- normal[axis] = 1.0;
- Plane tangent;
- if (axis == Vector3::AXIS_X) {
- tangent = Plane(0, 0, -1, 1);
- } else {
- tangent = Plane(1, 0, 0, 1);
- }
- int x_axis = ((axis + 1) % 3);
- int y_axis = ((axis + 2) % 3);
- if (axis != Vector3::AXIS_Z) {
- SWAP(x_axis, y_axis);
- for (int i = 0; i < 4; i++) {
- //uvs[i] = Vector2(1.0,1.0)-uvs[i];
- //SWAP(vertices[i].x,vertices[i].y);
- if (axis == Vector3::AXIS_Y) {
- vertices[i].y = -vertices[i].y;
- } else if (axis == Vector3::AXIS_X) {
- vertices[i].x = -vertices[i].x;
- }
- }
- }
- AABB aabb;
- // Everything except position and UV is compressed
- uint8_t *vertex_write_buffer = vertex_buffer.ptrw();
- uint8_t *attribute_write_buffer = attribute_buffer.ptrw();
- uint32_t v_normal;
- {
- Vector3 n = normal * Vector3(0.5, 0.5, 0.5) + Vector3(0.5, 0.5, 0.5);
- uint32_t value = 0;
- value |= CLAMP(int(n.x * 1023.0), 0, 1023);
- value |= CLAMP(int(n.y * 1023.0), 0, 1023) << 10;
- value |= CLAMP(int(n.z * 1023.0), 0, 1023) << 20;
- v_normal = value;
- }
- uint32_t v_tangent;
- {
- Plane t = tangent;
- uint32_t value = 0;
- value |= CLAMP(int((t.normal.x * 0.5 + 0.5) * 1023.0), 0, 1023);
- value |= CLAMP(int((t.normal.y * 0.5 + 0.5) * 1023.0), 0, 1023) << 10;
- value |= CLAMP(int((t.normal.z * 0.5 + 0.5) * 1023.0), 0, 1023) << 20;
- if (t.d > 0) {
- value |= 3 << 30;
- }
- v_tangent = value;
- }
- uint8_t v_color[4] = {
- uint8_t(CLAMP(color.r * 255.0, 0.0, 255.0)),
- uint8_t(CLAMP(color.g * 255.0, 0.0, 255.0)),
- uint8_t(CLAMP(color.b * 255.0, 0.0, 255.0)),
- uint8_t(CLAMP(color.a * 255.0, 0.0, 255.0))
- };
- for (int i = 0; i < 4; i++) {
- Vector3 vtx;
- vtx[x_axis] = vertices[i][0];
- vtx[y_axis] = vertices[i][1];
- if (i == 0) {
- aabb.position = vtx;
- aabb.size = Vector3();
- } else {
- aabb.expand_to(vtx);
- }
- float v_uv[2] = { (float)uvs[i].x, (float)uvs[i].y };
- memcpy(&attribute_write_buffer[i * attrib_stride + mesh_surface_offsets[RS::ARRAY_TEX_UV]], v_uv, 8);
- float v_vertex[3] = { (float)vtx.x, (float)vtx.y, (float)vtx.z };
- memcpy(&vertex_write_buffer[i * vertex_stride + mesh_surface_offsets[RS::ARRAY_VERTEX]], &v_vertex, sizeof(float) * 3);
- memcpy(&vertex_write_buffer[i * vertex_stride + mesh_surface_offsets[RS::ARRAY_NORMAL]], &v_normal, 4);
- memcpy(&vertex_write_buffer[i * vertex_stride + mesh_surface_offsets[RS::ARRAY_TANGENT]], &v_tangent, 4);
- memcpy(&attribute_write_buffer[i * attrib_stride + mesh_surface_offsets[RS::ARRAY_COLOR]], v_color, 4);
- }
- RID mesh = get_mesh();
- RS::get_singleton()->mesh_surface_update_vertex_region(mesh, 0, 0, vertex_buffer);
- RS::get_singleton()->mesh_surface_update_attribute_region(mesh, 0, 0, attribute_buffer);
- RS::get_singleton()->mesh_set_custom_aabb(mesh, aabb);
- set_aabb(aabb);
- RID shader_rid;
- StandardMaterial3D::get_material_for_2d(get_draw_flag(FLAG_SHADED), get_draw_flag(FLAG_TRANSPARENT), get_draw_flag(FLAG_DOUBLE_SIDED), get_alpha_cut_mode() == ALPHA_CUT_DISCARD, get_alpha_cut_mode() == ALPHA_CUT_OPAQUE_PREPASS, get_billboard_mode() == StandardMaterial3D::BILLBOARD_ENABLED, get_billboard_mode() == StandardMaterial3D::BILLBOARD_FIXED_Y, &shader_rid);
- if (last_shader != shader_rid) {
- RS::get_singleton()->material_set_shader(get_material(), shader_rid);
- last_shader = shader_rid;
- }
- if (last_texture != texture->get_rid()) {
- RS::get_singleton()->material_set_param(get_material(), "texture_albedo", texture->get_rid());
- last_texture = texture->get_rid();
- }
- }
- void Sprite3D::set_texture(const Ref<Texture2D> &p_texture) {
- if (p_texture == texture) {
- return;
- }
- if (texture.is_valid()) {
- texture->disconnect(CoreStringNames::get_singleton()->changed, Callable(this, "_queue_update"));
- }
- texture = p_texture;
- if (texture.is_valid()) {
- texture->connect(CoreStringNames::get_singleton()->changed, Callable(this, "_queue_update"));
- }
- _queue_update();
- emit_signal(SceneStringNames::get_singleton()->texture_changed);
- }
- Ref<Texture2D> Sprite3D::get_texture() const {
- return texture;
- }
- void Sprite3D::set_region_enabled(bool p_region) {
- if (p_region == region) {
- return;
- }
- region = p_region;
- _queue_update();
- }
- bool Sprite3D::is_region_enabled() const {
- return region;
- }
- void Sprite3D::set_region_rect(const Rect2 &p_region_rect) {
- bool changed = region_rect != p_region_rect;
- region_rect = p_region_rect;
- if (region && changed) {
- _queue_update();
- }
- }
- Rect2 Sprite3D::get_region_rect() const {
- return region_rect;
- }
- void Sprite3D::set_frame(int p_frame) {
- ERR_FAIL_INDEX(p_frame, int64_t(vframes) * hframes);
- frame = p_frame;
- _queue_update();
- emit_signal(SceneStringNames::get_singleton()->frame_changed);
- }
- int Sprite3D::get_frame() const {
- return frame;
- }
- void Sprite3D::set_frame_coords(const Vector2i &p_coord) {
- ERR_FAIL_INDEX(p_coord.x, hframes);
- ERR_FAIL_INDEX(p_coord.y, vframes);
- set_frame(p_coord.y * hframes + p_coord.x);
- }
- Vector2i Sprite3D::get_frame_coords() const {
- return Vector2i(frame % hframes, frame / hframes);
- }
- void Sprite3D::set_vframes(int p_amount) {
- ERR_FAIL_COND(p_amount < 1);
- vframes = p_amount;
- _queue_update();
- notify_property_list_changed();
- }
- int Sprite3D::get_vframes() const {
- return vframes;
- }
- void Sprite3D::set_hframes(int p_amount) {
- ERR_FAIL_COND(p_amount < 1);
- hframes = p_amount;
- _queue_update();
- notify_property_list_changed();
- }
- int Sprite3D::get_hframes() const {
- return hframes;
- }
- Rect2 Sprite3D::get_item_rect() const {
- if (texture.is_null()) {
- return Rect2(0, 0, 1, 1);
- }
- /*
- if (texture.is_null())
- return CanvasItem::get_item_rect();
- */
- Size2 s;
- if (region) {
- s = region_rect.size;
- } else {
- s = texture->get_size();
- s = s / Point2(hframes, vframes);
- }
- Point2 ofs = get_offset();
- if (is_centered()) {
- ofs -= s / 2;
- }
- if (s == Size2(0, 0)) {
- s = Size2(1, 1);
- }
- return Rect2(ofs, s);
- }
- void Sprite3D::_validate_property(PropertyInfo &property) const {
- if (property.name == "frame") {
- property.hint = PROPERTY_HINT_RANGE;
- property.hint_string = "0," + itos(vframes * hframes - 1) + ",1";
- property.usage |= PROPERTY_USAGE_KEYING_INCREMENTS;
- }
- if (property.name == "frame_coords") {
- property.usage |= PROPERTY_USAGE_KEYING_INCREMENTS;
- }
- SpriteBase3D::_validate_property(property);
- }
- void Sprite3D::_bind_methods() {
- ClassDB::bind_method(D_METHOD("set_texture", "texture"), &Sprite3D::set_texture);
- ClassDB::bind_method(D_METHOD("get_texture"), &Sprite3D::get_texture);
- ClassDB::bind_method(D_METHOD("set_region_enabled", "enabled"), &Sprite3D::set_region_enabled);
- ClassDB::bind_method(D_METHOD("is_region_enabled"), &Sprite3D::is_region_enabled);
- ClassDB::bind_method(D_METHOD("set_region_rect", "rect"), &Sprite3D::set_region_rect);
- ClassDB::bind_method(D_METHOD("get_region_rect"), &Sprite3D::get_region_rect);
- ClassDB::bind_method(D_METHOD("set_frame", "frame"), &Sprite3D::set_frame);
- ClassDB::bind_method(D_METHOD("get_frame"), &Sprite3D::get_frame);
- ClassDB::bind_method(D_METHOD("set_frame_coords", "coords"), &Sprite3D::set_frame_coords);
- ClassDB::bind_method(D_METHOD("get_frame_coords"), &Sprite3D::get_frame_coords);
- ClassDB::bind_method(D_METHOD("set_vframes", "vframes"), &Sprite3D::set_vframes);
- ClassDB::bind_method(D_METHOD("get_vframes"), &Sprite3D::get_vframes);
- ClassDB::bind_method(D_METHOD("set_hframes", "hframes"), &Sprite3D::set_hframes);
- ClassDB::bind_method(D_METHOD("get_hframes"), &Sprite3D::get_hframes);
- ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_texture", "get_texture");
- ADD_GROUP("Animation", "");
- ADD_PROPERTY(PropertyInfo(Variant::INT, "hframes", PROPERTY_HINT_RANGE, "1,16384,1"), "set_hframes", "get_hframes");
- ADD_PROPERTY(PropertyInfo(Variant::INT, "vframes", PROPERTY_HINT_RANGE, "1,16384,1"), "set_vframes", "get_vframes");
- ADD_PROPERTY(PropertyInfo(Variant::INT, "frame"), "set_frame", "get_frame");
- ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "frame_coords", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_EDITOR), "set_frame_coords", "get_frame_coords");
- ADD_GROUP("Region", "region_");
- ADD_PROPERTY(PropertyInfo(Variant::BOOL, "region_enabled"), "set_region_enabled", "is_region_enabled");
- ADD_PROPERTY(PropertyInfo(Variant::RECT2, "region_rect"), "set_region_rect", "get_region_rect");
- ADD_SIGNAL(MethodInfo("frame_changed"));
- ADD_SIGNAL(MethodInfo("texture_changed"));
- }
- Sprite3D::Sprite3D() {
- }
- ////////////////////////////////////////
- void AnimatedSprite3D::_draw() {
- if (get_base() != get_mesh()) {
- set_base(get_mesh());
- }
- if (frames.is_null()) {
- return;
- }
- if (frame < 0) {
- return;
- }
- if (!frames->has_animation(animation)) {
- return;
- }
- Ref<Texture2D> texture = frames->get_frame(animation, frame);
- if (!texture.is_valid()) {
- set_base(RID());
- return; //no texuture no life
- }
- Size2 tsize = texture->get_size();
- if (tsize.x == 0 || tsize.y == 0) {
- return;
- }
- Rect2 src_rect;
- src_rect.size = tsize;
- Point2 ofs = get_offset();
- if (is_centered()) {
- ofs -= tsize / 2;
- }
- Rect2 dst_rect(ofs, tsize);
- Rect2 final_rect;
- Rect2 final_src_rect;
- if (!texture->get_rect_region(dst_rect, src_rect, final_rect, final_src_rect)) {
- return;
- }
- if (final_rect.size.x == 0 || final_rect.size.y == 0) {
- return;
- }
- Color color = _get_color_accum();
- real_t pixel_size = get_pixel_size();
- Vector2 vertices[4] = {
- (final_rect.position + Vector2(0, final_rect.size.y)) * pixel_size,
- (final_rect.position + final_rect.size) * pixel_size,
- (final_rect.position + Vector2(final_rect.size.x, 0)) * pixel_size,
- final_rect.position * pixel_size,
- };
- Vector2 src_tsize = tsize;
- // Properly setup UVs for impostor textures (AtlasTexture).
- Ref<AtlasTexture> atlas_tex = texture;
- if (atlas_tex != nullptr) {
- src_tsize[0] = atlas_tex->get_atlas()->get_width();
- src_tsize[1] = atlas_tex->get_atlas()->get_height();
- }
- Vector2 uvs[4] = {
- final_src_rect.position / src_tsize,
- (final_src_rect.position + Vector2(final_src_rect.size.x, 0)) / src_tsize,
- (final_src_rect.position + final_src_rect.size) / src_tsize,
- (final_src_rect.position + Vector2(0, final_src_rect.size.y)) / src_tsize,
- };
- if (is_flipped_h()) {
- SWAP(uvs[0], uvs[1]);
- SWAP(uvs[2], uvs[3]);
- }
- if (is_flipped_v()) {
- SWAP(uvs[0], uvs[3]);
- SWAP(uvs[1], uvs[2]);
- }
- Vector3 normal;
- int axis = get_axis();
- normal[axis] = 1.0;
- Plane tangent;
- if (axis == Vector3::AXIS_X) {
- tangent = Plane(0, 0, -1, -1);
- } else {
- tangent = Plane(1, 0, 0, -1);
- }
- int x_axis = ((axis + 1) % 3);
- int y_axis = ((axis + 2) % 3);
- if (axis != Vector3::AXIS_Z) {
- SWAP(x_axis, y_axis);
- for (int i = 0; i < 4; i++) {
- //uvs[i] = Vector2(1.0,1.0)-uvs[i];
- //SWAP(vertices[i].x,vertices[i].y);
- if (axis == Vector3::AXIS_Y) {
- vertices[i].y = -vertices[i].y;
- } else if (axis == Vector3::AXIS_X) {
- vertices[i].x = -vertices[i].x;
- }
- }
- }
- AABB aabb;
- // Everything except position and UV is compressed
- uint8_t *vertex_write_buffer = vertex_buffer.ptrw();
- uint8_t *attribute_write_buffer = attribute_buffer.ptrw();
- uint32_t v_normal;
- {
- Vector3 n = normal * Vector3(0.5, 0.5, 0.5) + Vector3(0.5, 0.5, 0.5);
- uint32_t value = 0;
- value |= CLAMP(int(n.x * 1023.0), 0, 1023);
- value |= CLAMP(int(n.y * 1023.0), 0, 1023) << 10;
- value |= CLAMP(int(n.z * 1023.0), 0, 1023) << 20;
- v_normal = value;
- }
- uint32_t v_tangent;
- {
- Plane t = tangent;
- uint32_t value = 0;
- value |= CLAMP(int((t.normal.x * 0.5 + 0.5) * 1023.0), 0, 1023);
- value |= CLAMP(int((t.normal.y * 0.5 + 0.5) * 1023.0), 0, 1023) << 10;
- value |= CLAMP(int((t.normal.z * 0.5 + 0.5) * 1023.0), 0, 1023) << 20;
- if (t.d > 0) {
- value |= 3 << 30;
- }
- v_tangent = value;
- }
- uint8_t v_color[4] = {
- uint8_t(CLAMP(color.r * 255.0, 0.0, 255.0)),
- uint8_t(CLAMP(color.g * 255.0, 0.0, 255.0)),
- uint8_t(CLAMP(color.b * 255.0, 0.0, 255.0)),
- uint8_t(CLAMP(color.a * 255.0, 0.0, 255.0))
- };
- for (int i = 0; i < 4; i++) {
- Vector3 vtx;
- vtx[x_axis] = vertices[i][0];
- vtx[y_axis] = vertices[i][1];
- if (i == 0) {
- aabb.position = vtx;
- aabb.size = Vector3();
- } else {
- aabb.expand_to(vtx);
- }
- float v_uv[2] = { (float)uvs[i].x, (float)uvs[i].y };
- memcpy(&attribute_write_buffer[i * attrib_stride + mesh_surface_offsets[RS::ARRAY_TEX_UV]], v_uv, 8);
- float v_vertex[3] = { (float)vtx.x, (float)vtx.y, (float)vtx.z };
- memcpy(&vertex_write_buffer[i * vertex_stride + mesh_surface_offsets[RS::ARRAY_VERTEX]], &v_vertex, sizeof(float) * 3);
- memcpy(&vertex_write_buffer[i * vertex_stride + mesh_surface_offsets[RS::ARRAY_NORMAL]], &v_normal, 4);
- memcpy(&vertex_write_buffer[i * vertex_stride + mesh_surface_offsets[RS::ARRAY_TANGENT]], &v_tangent, 4);
- memcpy(&attribute_write_buffer[i * attrib_stride + mesh_surface_offsets[RS::ARRAY_COLOR]], v_color, 4);
- }
- RID mesh = get_mesh();
- RS::get_singleton()->mesh_surface_update_vertex_region(mesh, 0, 0, vertex_buffer);
- RS::get_singleton()->mesh_surface_update_attribute_region(mesh, 0, 0, attribute_buffer);
- RS::get_singleton()->mesh_set_custom_aabb(mesh, aabb);
- set_aabb(aabb);
- RID shader_rid;
- StandardMaterial3D::get_material_for_2d(get_draw_flag(FLAG_SHADED), get_draw_flag(FLAG_TRANSPARENT), get_draw_flag(FLAG_DOUBLE_SIDED), get_alpha_cut_mode() == ALPHA_CUT_DISCARD, get_alpha_cut_mode() == ALPHA_CUT_OPAQUE_PREPASS, get_billboard_mode() == StandardMaterial3D::BILLBOARD_ENABLED, get_billboard_mode() == StandardMaterial3D::BILLBOARD_FIXED_Y, &shader_rid);
- if (last_shader != shader_rid) {
- RS::get_singleton()->material_set_shader(get_material(), shader_rid);
- last_shader = shader_rid;
- }
- if (last_texture != texture->get_rid()) {
- RS::get_singleton()->material_set_param(get_material(), "texture_albedo", texture->get_rid());
- last_texture = texture->get_rid();
- }
- }
- void AnimatedSprite3D::_validate_property(PropertyInfo &property) const {
- if (!frames.is_valid()) {
- return;
- }
- if (property.name == "animation") {
- property.hint = PROPERTY_HINT_ENUM;
- List<StringName> names;
- frames->get_animation_list(&names);
- names.sort_custom<StringName::AlphCompare>();
- bool current_found = false;
- for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
- if (E->prev()) {
- property.hint_string += ",";
- }
- property.hint_string += String(E->get());
- if (animation == E->get()) {
- current_found = true;
- }
- }
- if (!current_found) {
- if (property.hint_string.is_empty()) {
- property.hint_string = String(animation);
- } else {
- property.hint_string = String(animation) + "," + property.hint_string;
- }
- }
- }
- if (property.name == "frame") {
- property.hint = PROPERTY_HINT_RANGE;
- if (frames->has_animation(animation) && frames->get_frame_count(animation) > 1) {
- property.hint_string = "0," + itos(frames->get_frame_count(animation) - 1) + ",1";
- }
- property.usage |= PROPERTY_USAGE_KEYING_INCREMENTS;
- }
- SpriteBase3D::_validate_property(property);
- }
- void AnimatedSprite3D::_notification(int p_what) {
- switch (p_what) {
- case NOTIFICATION_INTERNAL_PROCESS: {
- if (frames.is_null()) {
- return;
- }
- if (!frames->has_animation(animation)) {
- return;
- }
- if (frame < 0) {
- return;
- }
- float speed = frames->get_animation_speed(animation);
- if (speed == 0) {
- return; //do nothing
- }
- double remaining = get_process_delta_time();
- while (remaining) {
- if (timeout <= 0) {
- timeout = 1.0 / speed;
- int fc = frames->get_frame_count(animation);
- if (frame >= fc - 1) {
- if (frames->get_animation_loop(animation)) {
- frame = 0;
- } else {
- frame = fc - 1;
- }
- emit_signal(SceneStringNames::get_singleton()->animation_finished);
- } else {
- frame++;
- }
- _queue_update();
- emit_signal(SceneStringNames::get_singleton()->frame_changed);
- }
- double to_process = MIN(timeout, remaining);
- remaining -= to_process;
- timeout -= to_process;
- }
- } break;
- }
- }
- void AnimatedSprite3D::set_sprite_frames(const Ref<SpriteFrames> &p_frames) {
- if (frames.is_valid()) {
- frames->disconnect("changed", Callable(this, "_res_changed"));
- }
- frames = p_frames;
- if (frames.is_valid()) {
- frames->connect("changed", Callable(this, "_res_changed"));
- }
- if (!frames.is_valid()) {
- frame = 0;
- } else {
- set_frame(frame);
- }
- notify_property_list_changed();
- _reset_timeout();
- _queue_update();
- update_configuration_warnings();
- }
- Ref<SpriteFrames> AnimatedSprite3D::get_sprite_frames() const {
- return frames;
- }
- void AnimatedSprite3D::set_frame(int p_frame) {
- if (!frames.is_valid()) {
- return;
- }
- if (frames->has_animation(animation)) {
- int limit = frames->get_frame_count(animation);
- if (p_frame >= limit) {
- p_frame = limit - 1;
- }
- }
- if (p_frame < 0) {
- p_frame = 0;
- }
- if (frame == p_frame) {
- return;
- }
- frame = p_frame;
- _reset_timeout();
- _queue_update();
- emit_signal(SceneStringNames::get_singleton()->frame_changed);
- }
- int AnimatedSprite3D::get_frame() const {
- return frame;
- }
- Rect2 AnimatedSprite3D::get_item_rect() const {
- if (!frames.is_valid() || !frames->has_animation(animation) || frame < 0 || frame >= frames->get_frame_count(animation)) {
- return Rect2(0, 0, 1, 1);
- }
- Ref<Texture2D> t;
- if (animation) {
- t = frames->get_frame(animation, frame);
- }
- if (t.is_null()) {
- return Rect2(0, 0, 1, 1);
- }
- Size2 s = t->get_size();
- Point2 ofs = get_offset();
- if (centered) {
- ofs -= s / 2;
- }
- if (s == Size2(0, 0)) {
- s = Size2(1, 1);
- }
- return Rect2(ofs, s);
- }
- void AnimatedSprite3D::_res_changed() {
- set_frame(frame);
- _queue_update();
- }
- void AnimatedSprite3D::_set_playing(bool p_playing) {
- if (playing == p_playing) {
- return;
- }
- playing = p_playing;
- _reset_timeout();
- set_process_internal(playing);
- }
- bool AnimatedSprite3D::_is_playing() const {
- return playing;
- }
- void AnimatedSprite3D::play(const StringName &p_animation) {
- if (p_animation) {
- set_animation(p_animation);
- }
- _set_playing(true);
- }
- void AnimatedSprite3D::stop() {
- _set_playing(false);
- }
- bool AnimatedSprite3D::is_playing() const {
- return playing;
- }
- void AnimatedSprite3D::_reset_timeout() {
- if (!playing) {
- return;
- }
- if (frames.is_valid() && frames->has_animation(animation)) {
- float speed = frames->get_animation_speed(animation);
- if (speed > 0) {
- timeout = 1.0 / speed;
- } else {
- timeout = 0;
- }
- } else {
- timeout = 0;
- }
- }
- void AnimatedSprite3D::set_animation(const StringName &p_animation) {
- if (animation == p_animation) {
- return;
- }
- animation = p_animation;
- _reset_timeout();
- set_frame(0);
- notify_property_list_changed();
- _queue_update();
- }
- StringName AnimatedSprite3D::get_animation() const {
- return animation;
- }
- TypedArray<String> AnimatedSprite3D::get_configuration_warnings() const {
- TypedArray<String> warnings = SpriteBase3D::get_configuration_warnings();
- if (frames.is_null()) {
- warnings.push_back(TTR("A SpriteFrames resource must be created or set in the \"Frames\" property in order for AnimatedSprite3D to display frames."));
- }
- return warnings;
- }
- void AnimatedSprite3D::_bind_methods() {
- ClassDB::bind_method(D_METHOD("set_sprite_frames", "sprite_frames"), &AnimatedSprite3D::set_sprite_frames);
- ClassDB::bind_method(D_METHOD("get_sprite_frames"), &AnimatedSprite3D::get_sprite_frames);
- ClassDB::bind_method(D_METHOD("set_animation", "animation"), &AnimatedSprite3D::set_animation);
- ClassDB::bind_method(D_METHOD("get_animation"), &AnimatedSprite3D::get_animation);
- ClassDB::bind_method(D_METHOD("_set_playing", "playing"), &AnimatedSprite3D::_set_playing);
- ClassDB::bind_method(D_METHOD("_is_playing"), &AnimatedSprite3D::_is_playing);
- ClassDB::bind_method(D_METHOD("play", "anim"), &AnimatedSprite3D::play, DEFVAL(StringName()));
- ClassDB::bind_method(D_METHOD("stop"), &AnimatedSprite3D::stop);
- ClassDB::bind_method(D_METHOD("is_playing"), &AnimatedSprite3D::is_playing);
- ClassDB::bind_method(D_METHOD("set_frame", "frame"), &AnimatedSprite3D::set_frame);
- ClassDB::bind_method(D_METHOD("get_frame"), &AnimatedSprite3D::get_frame);
- ClassDB::bind_method(D_METHOD("_res_changed"), &AnimatedSprite3D::_res_changed);
- ADD_SIGNAL(MethodInfo("frame_changed"));
- ADD_SIGNAL(MethodInfo("animation_finished"));
- ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "frames", PROPERTY_HINT_RESOURCE_TYPE, "SpriteFrames"), "set_sprite_frames", "get_sprite_frames");
- ADD_PROPERTY(PropertyInfo(Variant::STRING, "animation"), "set_animation", "get_animation");
- ADD_PROPERTY(PropertyInfo(Variant::INT, "frame"), "set_frame", "get_frame");
- ADD_PROPERTY(PropertyInfo(Variant::BOOL, "playing"), "_set_playing", "_is_playing");
- }
- AnimatedSprite3D::AnimatedSprite3D() {
- }
|