作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Aframe API 支持曲面图像。然而,除了弯曲的图像,我还想制作弯曲的文本和平面。有人可以帮我解决这个问题吗?
我想我必须创建一个实体,但我不知道必须设置哪些属性。
最佳答案
我会使用 https://github.com/mayognaise/aframe-html-shader创建弯曲的文本。弯曲的文本是一个部分圆柱体,内部使用 repeat: -1 1
呈现 Material 。
HTML 着色器使用可用于文本的 HTML 为我们创建纹理,然后将该纹理应用到圆柱体。不幸的是,我们将不得不手动应用 repeat: -1 1
,因为该选项未公开。粗略的想法...
<!DOCTYPE html>
<html>
<head>
<title>Hello, WebVR! - A-Frame</title>
<meta name="description" content="Hello, WebVR! - A-Frame">
<script src="https://aframe.io/releases/0.6.0/aframe.min.js"></script>
<script src="https://unpkg.com/aframe-html-shader@0.2.0/dist/aframe-html-shader.min.js">
</head>
<body>
<script>
AFRAME.registerComponent('update-repeat', {
dependencies: ['material'],
init: function () {
var texture = this.el.components.material.material.map;
texture.repeat = new THREE.Vector2(-1, 1);
texture.needsUpdate = true;
}
});
</script>
<div id="texture" style="width: 100%; height: 100%; position: fixed; left: 0; top: 0; z-index: -1; overflow: hidden">
<p style="position: relative; top: 20px; font-size: 72px">HELLO HELLO</p>
<p style="position: relative; top: 20px; font-size: 48px">curvy text</p>
</div>
<a-scene>
<a-entity geometry="primitive: cylinder; radius: 2; segmentsRadial: 48; thetaLength: -160; openEnded: true"
material="shader: html; target: #texture; side: double; width: 500; height: 300; transparent: true" update-repeat position="0 0 -4" rotation="0 -90 0"></a-entity>
<a-sky color="#FAFAFA"></a-sky>
</a-scene>
</body>
</html>
关于javascript - Aframe VR曲面和文字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45084943/
我是一名优秀的程序员,十分优秀!