@rr0/ufoathome 0.16.0 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -309,6 +309,7 @@ interface SightingRecordingJson {
|
|
|
309
309
|
haloScale: number // 0 = no glow
|
|
310
310
|
selected: boolean
|
|
311
311
|
title?: string // shown as an on-canvas tooltip when hovered
|
|
312
|
+
behindCloud?: boolean // the witness reported it behind cloud at this instant — stated, never deduced (see below)
|
|
312
313
|
physical?: { sizeM: number, distanceM: number } // what the witness reported — see Apparent size
|
|
313
314
|
points?: { x: number, y: number }[] // "polygon" shapes only
|
|
314
315
|
}
|
|
@@ -328,6 +329,18 @@ A shape left out of a later keyframe is **held** at its last recorded state, not
|
|
|
328
329
|
keyframe is at `t=5000` is already painted, in that state, from `t=0` (hold-first/hold-last at both ends of a
|
|
329
330
|
source's own range). To make something stop being visible, keyframe it with `transparency: 1`.
|
|
330
331
|
|
|
332
|
+
### Behind a cloud
|
|
333
|
+
|
|
334
|
+
`behindCloud` is how a recording says "it disappeared into a cloud" — keyframed like any other
|
|
335
|
+
appearance field, and held rather than blended. It is *stated*, for the same reason
|
|
336
|
+
`DecorObject.occludesSourceIds` is: this format describes a 2D appearance on the witness's own field
|
|
337
|
+
of view, not where an object was in space, so nothing in it can deduce whether cloud came between
|
|
338
|
+
them. A reported distance (`physical`) is an occasional, often shaky extra, and the sky's own gaps
|
|
339
|
+
are procedural noise — leaving the question to geometry means tuning the weather until the reported
|
|
340
|
+
disappearance happens to occur. The witness's account outranks both; where a recording states a
|
|
341
|
+
distance and makes no claim about cloud, the renderer falls back to the geometric test (is the deck
|
|
342
|
+
crossed before the object, on the right side, with actual cloud in that direction).
|
|
343
|
+
|
|
331
344
|
### Apparent size
|
|
332
345
|
|
|
333
346
|
`physical` is the witness's own reported size and distance, and the on-screen `bounds.width` is derived from it
|