Search found 5673 matches

by airsoftsoftwair
Sun Mar 23, 2025 9:17 pm
Forum: Hollywood bugs
Topic: SetClipboard doesn't work with palette brushes
Replies: 1
Views: 664

Re: SetClipboard doesn't work with palette brushes

Ok, will be fixed, thanks for reporting!
by airsoftsoftwair
Sun Mar 23, 2025 9:16 pm
Forum: Hollywood bugs
Topic: InvertPalette doesn't work correctly
Replies: 1
Views: 447

Re: InvertPalette doesn't work correctly

Right, will be fixed, thanks for reporting!
by airsoftsoftwair
Sun Mar 23, 2025 9:16 pm
Forum: Wishlist
Topic: Separate brush settings for MixBrush
Replies: 1
Views: 688

Re: Separate brush settings for MixBrush

I think this could easily be implemented in a Hollywood script by first reducing the alpha channel values using ReduceAlphaChannel() and then using MixBrush() or something.
by airsoftsoftwair
Sun Mar 23, 2025 9:15 pm
Forum: Showcase
Topic: WormHole
Replies: 6
Views: 1002

Re: WormHole

Nice program and the website looks really cool :)
by airsoftsoftwair
Sun Mar 23, 2025 9:14 pm
Forum: Newbie questions
Topic: FloodFill with threshold possible?
Replies: 2
Views: 372

Re: FloodFill with threshold possible?

amyren wrote: Sat Mar 22, 2025 8:40 am If not, would this be possible to add as an option to FloodFill in the future?
Not likely to come as an addition to Hollywood's graphics core but there may be a dedicated image processing plugin in the future which could do that.
by airsoftsoftwair
Fri Mar 14, 2025 6:13 pm
Forum: Announcements
Topic: Forum slowness and downtimes
Replies: 1
Views: 1561

Re: Forum slowness and downtimes

This problem should be fixed now. Visitor numbers are back to normal (i.e. 30 to 50 visitors or so). Compare that to 5541 visitors one week ago...
by airsoftsoftwair
Fri Mar 14, 2025 6:12 pm
Forum: Hollywood bugs
Topic: Some brush library functions crash with palette brushes
Replies: 1
Views: 524

Re: Some brush library functions crash with palette brushes

Hmm, with Hollywood 10.0 only PolarDistortBrush() crashes here, with the latest Hollywood master I don't get any crashes at all so it might have been fixed already but I'm not sure. I'll check.
by airsoftsoftwair
Fri Mar 14, 2025 6:09 pm
Forum: Hollywood bugs
Topic: Some brushes are reported to have 0 bits depth
Replies: 1
Views: 421

Re: Some brushes are reported to have 0 bits depth

Clearly a bug, will be fixed. Thanks for reporting!
by airsoftsoftwair
Wed Mar 05, 2025 10:29 pm
Forum: General programming
Topic: What is the idea with Add(), Div() etc.?
Replies: 1
Views: 792

Re: What is the idea with Add(), Div() etc.?

These are old functions from the days of Hollywood 1.x. They are just there for compatibility with old scripts. You shouldn't use them in new code because they will be much slower than using operators because their use involves a function call while operators will directly map to VM opcodes.
by airsoftsoftwair
Wed Mar 05, 2025 10:28 pm
Forum: General programming
Topic: Does FreeBrush frree Brush immediatelly?
Replies: 3
Views: 2071

Re: Does FreeBrush frree Brush immediatelly?

FreeBrush() frees the brush data from memory immediately, so in that loop you're having only one brush in memory at once. There's one exception, though: If layers are on and the brush is still used by a layer, the brush won't be freed immediately but will just be made inaccessible while still keepi...