雨果·巴拉:行业北极星Vision Pro过度设计不适合产品市场

Mozilla WebXR绘画工具A-Painter助你轻松创作、分享VR作品

文章相关引用及参考:映维网

即便没有安装创作软件,你仍然可以轻松通过网页创作和分享你的VR作品。

映维网 2018年07月04日)希望马上开始画画吗?你可以访问这个网站。同时,请确保你的浏览器支持WebXR。对于Chromium,请通过chrome:// flags / #enable-gamepad-extensions启用相应的flag。火狐浏览器即将推出支持。 没有VR设备?不用担心,你可以通过任意设备欣赏社区的绘画作品。

Mozilla VR团队表示,他们是Tilt Brush的铁杆粉丝。这是VR作为艺术表现媒介力量的一个优秀例子。在过去数周时间,Mozilla VR团队一直在实验基于Web的网页版Tilt Brush。我们希望说明,即便没有安装创作软件,你仍然可以轻松通过网页创作和分享你的VR作品。

要浏览绘画作品,你只需一款支持WebGL的浏览器,但为了满足你的创作冲动,你需要包含控制器的系统。这意味着目前A-Painter只支持HTC Vive。不过,Mozilla VR团队表示他们希望很快就带来改变。

1. 今天可以用A-Painter做什么?

  1. 利用运动控制器在3D中画画。用双手创作。
  2. 只需复制和粘贴URL即可与世界共享你的作品。
  3. 无论有无头显,你都可以在任何地方浏览3D绘画。
  4. 以其他人的绘画作品为基础,并且为其添加你的创意。
  5. 从桌面将图像和OBJ模型拖放到浏览器,以此作为模板或绘画起点。
  6. 保存并加载画作的本地二进制文件。
  7. 工具提供了超过30个笔刷,你同时可以利用自定义的A-Painter Brush API来轻松创建新的笔刷。

2. 如何开始

非常简单。在支持WebVR的浏览器(在about:config中启用Gamepad Extensions)转到A-Painter官网,并且打开HTC Vive头显。拿起控制器,按下扳机键,然后你就可以开始自己的创作了。

如果没有头显,你仍然可以通过鼠标和键盘,或者是移动设备来浏览其他人的作品。

3. 控制器

  1. 扳机键:按住即可创作(压力敏感)。
  2. 拇指板:向上和向下滑动可以改变画笔大小。
  3. 侧边键:撤消。
  4. 菜单按钮:切换主菜单。

打开主菜单后,你可以将另一个控制器指向所需选项,并按下扳机键来修改颜色,大小和画笔类型。

  1. Color History(颜色历史):保存最近使用的七种颜色。
  2. Clear(清除):清除绘画。小心使用。
  3. Save(保存):整个画作将以二进制格式保存,并且上传至服务器,在VR之外(但仍在浏览器中),你将获得一个相应的URL,然后你可以分享画作或者继续创作。
  4. Copy(复制):将当前握持控制器的画笔设置(类型,颜色和大小)复制到指向控制器。

4. 可扩展的A-Painter

要创建新画笔,请实现以下接口,并通过调用AFRAME.registerBrush(brushName,definition,options)进行注册。

接下来,定义以下内容:

BrushInterface.prototype = { addPoint: function (position, orientation, pointerPosition, pressure, timestamp) {}, tick: function (timeOffset, delta) {}};

唯一需要实现的函数是addPoint。借助addPoint,你可以对控制器返回的点,方向和压力数据执行一定的操作(即创建或修改几何图形)。如果你向场景添加了某些内容则返回true,否则返回false。如果要添加动态行为,请实现tick函数(每一帧调用)。

以下是自定义spheres画笔的代码:
/* globals AFRAME, THREE */

/* globals AFRAME, THREE */
AFRAME.registerBrush(
// Name of brush.
'spheres',

// Methods for brush definition.
{
init: function (color, width) {
// Initialize the material based on the stroke color.
this.material = new THREE.MeshStandardMaterial({
color: this.data.color,
roughness: 0.5,
metalness: 0.5,
side: THREE.DoubleSide,
shading: THREE.FlatShading
});
this.geometry = new THREE.IcosahedronGeometry(1, 0);
},

// This method is called every time we need to add a point
// to our stroke. It should return `true` if the point is
// added correctly and `false` otherwise.
addPoint: function (position, orientation, pointerPosition,
pressure, timestamp) {
// Create a new sphere mesh to insert at the given position.
var sphere = new THREE.Mesh(this.geometry, this.material);

// The scale is determined by the trigger pressure.
var scale = this.data.size / 2 * pressure;
sphere.scale.set(scale, scale, scale);
sphere.initialScale = sphere.scale.clone();

// Generate a random phase to be used in the tick animation.
sphere.phase = Math.random() * Math.PI * 2;

// Set the position and orientation of the sphere to match
// the controller’s.
sphere.position.copy(pointerPosition);
sphere.rotation.copy(orientation);

// Add the sphere to the `object3D`.
this.object3D.add(sphere);

// Return `true`, since we’ve correctly added a new point (sphere).
return true;
},

// This method is called on every frame.
tick: function (timeOffset, delta) {
for (var i = 0; i < this.object3D.children.length; i++) { var sphere = this.object3D.children[i]; // Calculate the sine value based on the time and the phase for // this sphere, and use it to scale the geometry. var sin = (Math.sin(sphere.phase + timeOffset / 500.0) + 1) / 2 + 0.1; sphere.scale.copy(sphere.initialScale).multiplyScalar(sin); } }, }, // Additional options for this brush. { thumbnail: 'brushes/thumb_spheres.gif', spacing: 0.01 } );

更多关于创建自定义笔刷的信息请访问这里

5. 未来计划

Mozilla VR团队表示,在开发工具时,他们构思了一系列有趣的点子。 A-Painter的未来将取决于你和其他用户的反馈,而以下是他们希望在未来增加的功能:

  1. 更多更好的工具,如颜色选择器和橡皮擦
  2. 更多更好的笔刷
  3. 保存屏幕截图和GIF动图
  4. 音频响应刷
  5. 多用户画家和观众模式
  6. 导入glTF模型
  7. 导出为标准3D文件格式,如OBJ和glTF
  8. 用于展示用户作品的专用网站
  9. 后期处理滤镜
  10. 对现有画笔的性能优化

当然,如果你有任何想法,问题,或者希望直接为代码库做出贡献,你随时都可以访问A-Pinter的GitHub页面

本文链接https://news.nweon.com/47618
转载须知:转载摘编需注明来源映维网并保留本文链接
素材版权:除额外说明,文章所用图片、视频均来自文章关联个人、企业实体等提供
QQ交流群苹果Vision  |  Meta Quest  |  微软HoloLens  |  AR/VR开发者  |  映维粉丝读者

您可能还喜欢...

资讯