text animation is not updating during rendering #71925
Labels
No Label
Interest
Animation & Rigging
Interest
Blender Cloud
Interest
Collada
Interest
Core
Interest
Documentation
Interest
Eevee & Viewport
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
Import and Export
Interest
Modeling
Interest
Modifiers
Interest
Nodes & Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds, Tests & Devices
Interest
Python API
Interest
Rendering & Cycles
Interest
Sculpt, Paint & Texture
Interest
Translations
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Meta
Good First Issue
Meta
Papercut
Module
Add-ons (BF-Blender)
Module
Add-ons (Community)
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: blender/blender-addons#71925
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
System Information
Operating system: windows version 1903 OS build 18362.476 64-bit with Intel Core i7-6700 CPU
Graphics card: GeForce GTX 1080
also:
Operating system: Ubuntu 18.04.3 64-bit with Intel Core i7-7700 CPU
Graphics card: GeForce GTX 1070
Blender Version
Broken: Blender 2.81
Worked: Blender 2.8
Short description of error
Hi! I'm not sure if it is a Blender bug, but...
I'm using typewriter add-on to animate the text.
Animated property is "character count"
The result should be a neat typewriting effect.
It worked without any issues in Blender 2.8 both on Linux and Windows.
In Blender 2.81 It works in preview window, but animation (character count value) is not updating while rendering. As a result I always have static text.
If I render single random frame, the number of characters will be correct.
But if I render animation (no matter to mp4 file or like sequence of png files), the text is not changing
I tried latest build of blender 2.82 Alpha from 26-11-2019 and had the same issue
Exact steps for others to reproduce the error
text_animation_test.blend
blender-typewriter-addon-master.zip
Example of properly animated text in Blender 2.8:
text_anim_test_Blender_2.8.mp4
Example of non-updating text animation in Blender 2.81 (the result depends on current frame value)
text_anim_test_Blender_2.81.mp4
text_anim_test2_Blender_2.81.mp4
Thank you for your time!
Added subscriber: @daria_pedak
Added subscriber: @Sergey
Changed status from 'Open' to: 'Archived'
This is something what needs to be addressed from an addon side.
This worked in 2.80 due to some luck, but was still fragile. There is proper way now which involves newely added functionality to handlers [1].
So technically
uptext()
should query evaluated text (text_eval = text.evaluated_get(depsgraph)
) and access propertiescharacter_count
viatext_eval.character_count
.Modification should still be done on
text
though.Thanks for the report, but you'd need to report this to the addon developers.
Added subscriber: @lichtwerk
Blender is not maintaining that Addon, please report the issue to the original author(s) instead.
Note that blender/blender#71234 (Custom property doesnt update when rendering animation) could be related...
This comment was removed by @daria_pedak
Thank you very much