Tony-Huang
  • Joined on 2023-05-22
Tony-Huang opened issue blender/blender#122152 2024-05-23 12:22:52 +02:00
[BUG] The Image Editor and Movieclip Editor can't update/redraw the selecting state of the Mask Points with code
Tony-Huang commented on issue blender/blender#122103 2024-05-23 07:20:32 +02:00
[BUG] .mask.layers.new(name = 'MaskLayer') causes crash

I get it. Thanks for your help.

Tony-Huang closed issue blender/blender#122103 2024-05-23 07:01:24 +02:00
[BUG] .mask.layers.new(name = 'MaskLayer') causes crash
Tony-Huang commented on issue blender/blender#122103 2024-05-23 07:01:20 +02:00
[BUG] .mask.layers.new(name = 'MaskLayer') causes crash

Thank you for your reply. Currently, "bpy.ops.mask.layer_new()" is the solution for 4.1.1. Hope Blender solves the bug in the future.

Tony-Huang opened issue blender/blender#122103 2024-05-22 15:37:43 +02:00
[BUG] .mask.layers.new(name = 'MaskLayer') causes crash
Tony-Huang closed issue blender/blender#121812 2024-05-15 09:51:32 +02:00
Circle Select Bug in the movieclip editor
Tony-Huang commented on issue blender/blender#121812 2024-05-15 09:51:28 +02:00
Circle Select Bug in the movieclip editor

Hi, YimingWu. I removed 4.1.0 and installed 4.1.1 image After a few times, the version 4.1.1 doesn't crash. Thanks for your help.

Tony-Huang opened issue blender/blender#121812 2024-05-15 05:07:09 +02:00
Circle Select Bug in the movieclip editor
Tony-Huang commented on issue blender/blender#120551 2024-04-12 08:56:27 +02:00
Loop Cut tool does not work when Select Circle tool is active

Video here.

Tony-Huang opened issue blender/blender#120551 2024-04-12 05:22:26 +02:00
Select Circle can't work with Loop Cut
Tony-Huang closed issue blender/blender#119559 2024-03-27 11:29:16 +01:00
internal error: modal gizmo-map handler has invalid area
Tony-Huang commented on issue blender/blender#119559 2024-03-27 11:29:12 +01:00
internal error: modal gizmo-map handler has invalid area

Depending on your code, I think you're right. I tested it again. It didn't crash. Maybe my original code caused the problem. I'm going to check the code again. In your comment, /* When changing…

Tony-Huang commented on issue blender/blender#119559 2024-03-27 04:11:01 +01:00
internal error: modal gizmo-map handler has invalid area

I repeated the operator for many times. The console displayed lots of "internal error: modal gizmo-map handler has invalid area" once. Then, the Blender stopped. The screen shot is ![image](/attac…

Tony-Huang commented on issue blender/blender#119559 2024-03-18 02:13:43 +01:00
internal error: modal gizmo-map handler has invalid area

I simplified the code. It's easier to test.

`import bpy

class SimpleModalOperator(bpy.types.Operator): """A simple modal operator""" bl_idname = "object.simple_modal_operator" …

Tony-Huang opened issue blender/blender#119559 2024-03-16 15:50:58 +01:00
internal error: modal gizmo-map handler has invalid area
Tony-Huang closed issue blender/blender#117792 2024-02-04 15:47:18 +01:00
The color attribute of Vertex Domain can't access data
Tony-Huang commented on issue blender/blender#117792 2024-02-04 15:47:15 +01:00
The color attribute of Vertex Domain can't access data

Thank you for the reply. I've tried all night to test it. I don't realize the object mode is the reason. Thank you.

Tony-Huang opened issue blender/blender#117792 2024-02-04 02:25:38 +01:00
The color attribute of Vertex Domain can't access data
Tony-Huang commented on issue blender/blender#114090 2023-11-02 10:45:05 +01:00
bpy.ops.ed.undo.poll() failed

I've finished my undo add-on recently. I found: If your operator can't be undid by bpy.ops.ed.undo(), it might cause bpy.ops.ed.undo.poll() fail.

The solution is: Remove " bl_options =…

Tony-Huang commented on issue blender/blender#114090 2023-10-24 11:44:03 +02:00
bpy.ops.ed.undo.poll() failed

The steps:

  1. Open Blender.
  2. Paste " bpy.ops.ed.undo() " in the Blender Python Console and Press ENTER.
  3. The RuntimeError occurs. `Traceback (most recent call last): File "<blender_conso…