Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 A-Frame 中有 2 个问题
首先是在 A 帧中假设我有一个相机,我希望它只显示某个尺寸,例如 1366x768 或 700*700,我该如何实现?
我已将相机附加到实体标签
<a-entity> <a-camera><a-camera> </a-entity>
第二个是,是否可以用相机移动天空盒,以便我总是看着天空盒中的同一个位置?
附加嵌入式组件并使用 CSS 设置画布样式。这与相机没有任何关系,它只是画布的大小。
<a-scene embedded>...</a-scene> a-scene { width: 50%; }