(UIEditorRoot parent)
| 101 | private sealed class View : ContainerControl |
| 102 | { |
| 103 | public View(UIEditorRoot parent) |
| 104 | { |
| 105 | AutoFocus = false; |
| 106 | ClipChildren = false; |
| 107 | CullChildren = false; |
| 108 | Pivot = Float2.Zero; |
| 109 | Size = new Float2(1920, 1080); |
| 110 | Parent = parent; |
| 111 | } |
| 112 | |
| 113 | public override bool RayCast(ref Float2 location, out Control hit) |
| 114 | { |
no outgoing calls
no test coverage detected