Its been a while since we had many updates to the editor, so I thought I might make a few requests, a few of which are probably already on the todo list.
Is overlapping at offset between minimum, and maximum:
An additional condition like overlap at offset, but checks all pixels between two values. Like if you gave it 4, and 8 it would check all the pixels between the hotspot +4, and the hotspot+8. Something like -10, and 10 would basically check both the left, and right for a collision if it were on the x. I realize you can use the los behavior for this, but that can complicate things, like a 45 cone would get just one direction, but if you need multiple directions you must add another behavior. Blah, blah, blah 360 degrees misses corners, etc.
Run time editable hot spots:
The origin is where and object can be scaled from. Say for example an object had the origin on the left center, and you scaled the width higher, it would look like the object was growing towards the right. The only way to make it look like its growing in some other direction is by either changing the angle, which may not work in some situations, or add another object that has the hot spot set to the preferred side.
Origin for los, other than hot spot:
The hot spot isn't always the ideal position for the cone origin, and using a dummy object is overly complicated.
Also: Can't see around square corners, so using "solid" can be an issue with something else that uses solid, say tilemaps.
Object.timescale:
We have object.dt, but using the actual timescale would simplify some things.
Weighted random:
It would be nice to have an expression that that gave us random as a chance, or dice roll, or percent. Like in this thread:
There are so many good places to use that, but implementing it for each "roll" is a big hassle. Id say use a function, but then you get the picking issue.