【Three.js】知识梳理十六:图形界面工具(GUI)

2024-06-13 11:36

本文主要是介绍【Three.js】知识梳理十六:图形界面工具(GUI),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在进行Three.js项目开发时,为了更好地调试和控制3D场景中的各种参数,图形用户界面工具(GUI)显得尤为重要。通过GUI工具,开发者可以在不修改代码的情况下实时调整参数,提高开发效率和灵活性。本文将介绍几种常用的Three.js GUI工具,并展示它们的基本用法。

image.png

在3D图形开发过程中,调整参数如光照强度、物体位置、材质属性等是一个频繁且必要的操作。通过GUI工具,开发者可以直观地调整这些参数,而不需要频繁修改代码和刷新页面。这不仅节省了时间,还能提高调试的精度。

常用GUI工具简介

dat.GUI

dat.GUI 是一个轻量级的JavaScript库,专为调试和参数调整设计。它提供了一个简洁的界面,可以快速集成到Three.js项目中。

GitHub - dataarts/dat.gui: Lightweight controller library for JavaScript.

ControlKit

ControlKit 是另一个功能强大的GUI工具。与dat.GUI相比,它提供了更多的控件和更美观的界面,适合需要复杂控制界面的项目。

GitHub - automat/controlkit.js: A lightweight controller and gui library

lil-gui

lil-gui 是一个现代化的GUI库,专注于性能和易用性。它的界面美观,控件丰富,适合大多数WebGL项目。

GitHub - georgealways/lil-gui: Makes a floating panel for controllers on the web. Works as a drop-in replacement for dat.gui in most projects.

dat.GUI

安装dat.GUI

可以通过npm或直接下载源码的方式来安装dat.GUI。推荐使用npm进行安装:

npm install dat.gui
基本用法
初始化dat.GUI

在Three.js项目中引入dat.GUI并进行初始化:

import * as THREE from 'three';
import { GUI } from 'dat.gui';
​
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
const renderer = new THREE.WebGLRenderer();
​
renderer.setSize(window.innerWidth, window.innerHeight);
document.body.appendChild(renderer.domElement);
​
// 创建一个简单的立方体
const geometry = new THREE.BoxGeometry();
const material = new THREE.MeshBasicMaterial({ color: 0x00ff00 });
const cube = new THREE.Mesh(geometry, material);
scene.add(cube);
​
camera.position.z = 5;
​
// 初始化dat.GUI
const gui = new GUI();
const cubeFolder = gui.addFolder('Cube');
cubeFolder.add(cube.rotation, 'x', 0, Math.PI * 2);
cubeFolder.add(cube.rotation, 'y', 0, Math.PI * 2);
cubeFolder.add(cube.rotation, 'z', 0, Math.PI * 2);
cubeFolder.add(cube.position, 'x', -5, 5);
cubeFolder.add(cube.position, 'y', -5, 5);
cubeFolder.add(cube.position, 'z', -5, 5);
cubeFolder.open();
​
function animate() {requestAnimationFrame(animate);renderer.render(scene, camera);
}
​
animate();

在上述代码中,我们创建了一个简单的Three.js场景,并使用dat.GUI创建了一个控制面板来实时调整立方体的旋转和位置。

控制物体的旋转和位置

我们可以通过dat.GUI的add方法将需要调整的属性添加到控制面板中。例如,控制立方体的旋转和位置:

cubeFolder.add(cube.rotation, 'x', 0, Math.PI * 2);
cubeFolder.add(cube.rotation, 'y', 0, Math.PI * 2);
cubeFolder.add(cube.rotation, 'z', 0, Math.PI * 2);
cubeFolder.add(cube.position, 'x', -5, 5);
cubeFolder.add(cube.position, 'y', -5, 5);
cubeFolder.add(cube.position, 'z', -5, 5);
高级用法
调整材质属性

img

dat.GUI不仅可以控制物体的旋转和位置,还可以调整材质的属性,例如颜色和线框模式:

const materialFolder = gui.addFolder('Material');
const materialParams = {color: material.color.getHex(),wireframe: material.wireframe,
};
materialFolder.addColor(materialParams, 'color').onChange((value) => {material.color.set(value);
});
materialFolder.add(materialParams, 'wireframe').onChange((value) => {material.wireframe = value;
});
materialFolder.open();
添加自定义函数

img

dat.GUI允许我们添加自定义按钮来执行特定操作,例如重置场景:

const actions = {reset: () => {cube.position.set(0, 0, 0);cube.rotation.set(0, 0, 0);},
};
gui.add(actions, 'reset');
使用对象进行分组

img

dat.GUI支持将参数分组,这样可以更好地组织控制面板:

const params = {rotation: {x: cube.rotation.x,y: cube.rotation.y,z: cube.rotation.z,},position: {x: cube.position.x,y: cube.position.y,z: cube.position.z,}
};
​
const rotationFolder = gui.addFolder('Rotation');
rotationFolder.add(params.rotation, 'x', 0, Math.PI * 2).onChange((value) => {cube.rotation.x = value;
});
rotationFolder.add(params.rotation, 'y', 0, Math.PI * 2).onChange((value) => {cube.rotation.y = value;
});
rotationFolder.add(params.rotation, 'z', 0, Math.PI * 2).onChange((value) => {cube.rotation.z = value;
});
​
const positionFolder = gui.addFolder('Position');
positionFolder.add(params.position, 'x', -5, 5).onChange((value) => {cube.position.x = value;
});
positionFolder.add(params.position, 'y', -5, 5).onChange((value) => {cube.position.y = value;
});
positionFolder.add(params.position, 'z', -5, 5).onChange((value) => {cube.position.z = value;
});
使用dat.GUI管理复杂场景

对于复杂的Three.js场景,可以通过dat.GUI来管理多个物体和材质的参数。以下是一个更复杂的示例,展示如何使用dat.GUI管理多个物体:

const cube1 = new THREE.Mesh(new THREE.BoxGeometry(), new THREE.MeshBasicMaterial({ color: 0xff0000 }));
const cube2 = new THREE.Mesh(new THREE.BoxGeometry(), new THREE.MeshBasicMaterial({ color: 0x0000ff }));
​
scene.add(cube1);
scene.add(cube2);
​
const cubes = {cube1: {rotation: cube1.rotation,position: cube1.position,material: cube1.material},cube2: {rotation: cube2.rotation,position: cube2.position,material: cube2.material}
};
​
const cube1Folder = gui.addFolder('Cube 1');
cube1Folder.add(cubes.cube1.rotation, 'x', 0, Math.PI * 2);
cube1Folder.add(cubes.cube1.rotation, 'y', 0, Math.PI * 2);
cube1Folder.add(cubes.cube1.rotation, 'z', 0, Math.PI * 2);
cube1Folder.add(cubes.cube1.position, 'x', -5, 5);
cube1Folder.add(cubes.cube1.position, 'y', -5, 5);
cube1Folder.add(cubes.cube1.position, 'z', -5, 5);
​
const cube2Folder = gui.addFolder('Cube 2');
cube2Folder.add(cubes.cube2.rotation, 'x', 0, Math.PI * 2);
cube2Folder.add(cubes.cube2.rotation, 'y', 0, Math.PI * 2);
cube2Folder.add(cubes.cube2.rotation, 'z', 0, Math.PI * 2);
cube2Folder.add(cubes.cube2.position, 'x', -5, 5);
cube2Folder.add(cubes.cube2.position, 'y', -5, 5);
cube2Folder.add(cubes.cube2.position, 'z', -5, 5);

ControlKit

安装ControlKit

可以通过npm或直接下载源码的方式来安装ControlKit。推荐使用npm进行安装:

npm install controlkit
基本用法
初始化ControlKit

在Three.js项目中引入ControlKit并进行初始化:

import * as THREE from 'three';
import ControlKit from 'controlkit';
​
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
const renderer = new THREE.WebGLRenderer();
​
renderer.setSize(window.innerWidth, window.innerHeight);
document.body.appendChild(renderer.domElement);
​
// 创建一个简单的立方体
const geometry = new THREE.BoxGeometry();
const material = new THREE.MeshBasicMaterial({ color: 0x00ff00 });
const cube = new THREE.Mesh(geometry, material);
scene.add(cube);
​
camera.position.z = 5;
​
// 初始化ControlKit
const controlKit = new ControlKit();
controlKit.addPanel({ label: 'Cube Controls' }).addGroup({ label: 'Rotation' }).addSlider(cube.rotation, 'x', { label: 'Rotation X', min: 0, max: Math.PI * 2, step: 0.01 }).addSlider(cube.rotation, 'y', { label: 'Rotation Y', min: 0, max: Math.PI * 2, step: 0.01 }).addSlider(cube.rotation, 'z', { label: 'Rotation Z', min: 0, max: Math.PI * 2, step: 0.01 }).addGroup({ label: 'Position' }).addSlider(cube.position, 'x', { label: 'Position X', min: -5, max: 5, step: 0.01 }).addSlider(cube.position, 'y', { label: 'Position Y', min: -5, max: 5, step: 0.01 }).addSlider(cube.position, 'z', { label: 'Position Z', min: -5, max: 5, step: 0.01 });
​
function animate() {requestAnimationFrame(animate);renderer.render(scene, camera);
}
​
animate();

在上述代码中,我们创建了一个基本的Three.js场景,并使用ControlKit创建了一个控制面板来实时调整立方体的旋转和位置。

高级用法
动态调整材质属性

image.png

ControlKit可以调整物体的材质属性,例如颜色和线框模式:

const materialParams = {color: material.color.getHex(),wireframe: material.wireframe,
};
​
controlKit.addPanel({ label: 'Material Controls' }).addColor(materialParams, 'color', { label: 'Color' }).onChange((value) => {material.color.set(value);}).addCheckbox(materialParams, 'wireframe', { label: 'Wireframe' }).onChange((value) => {material.wireframe = value;});
添加自定义按钮

image.png

ControlKit允许我们添加自定义按钮来执行特定操作,例如重置场景:

const actions = {reset: () => {cube.position.set(0, 0, 0);cube.rotation.set(0, 0, 0);},
};
​
controlKit.addPanel({ label: 'Actions' }).addButton(actions, 'reset', { label: 'Reset Cube' });
使用对象进行分组

image.png

ControlKit支持将参数分组,这样可以更好地组织控制面板:

const params = {rotation: {x: cube.rotation.x,y: cube.rotation.y,z: cube.rotation.z,},position: {x: cube.position.x,y: cube.position.y,z: cube.position.z,}
};
​
const controlPanel = controlKit.addPanel({ label: 'Cube Controls' });
​
const rotationGroup = controlPanel.addGroup({ label: 'Rotation' });
rotationGroup.addSlider(params.rotation, 'x', { label: 'Rotation X', min: 0, max: Math.PI * 2, step: 0.01 }).onChange((value) => {cube.rotation.x = value;
});
rotationGroup.addSlider(params.rotation, 'y', { label: 'Rotation Y', min: 0, max: Math.PI * 2, step: 0.01 }).onChange((value) => {cube.rotation.y = value;
});
rotationGroup.addSlider(params.rotation, 'z', { label: 'Rotation Z', min: 0, max: Math.PI * 2, step: 0.01 }).onChange((value) => {cube.rotation.z = value;
});
​
const positionGroup = controlPanel.addGroup({ label: 'Position' });
positionGroup.addSlider(params.position, 'x', { label: 'Position X', min: -5, max: 5, step: 0.01 }).onChange((value) => {cube.position.x = value;
});
positionGroup.addSlider(params.position, 'y', { label: 'Position Y', min: -5, max: 5, step: 0.01 }).onChange((value) => {cube.position.y = value;
});
positionGroup.addSlider(params.position, 'z', { label: 'Position Z', min: -5, max: 5, step: 0.01 }).onChange((value) => {cube.position.z = value;
});
ControlKit的优势
  • 丰富的控件类型:除了基本的滑块和复选框外,ControlKit还提供了颜色选择器、按钮、折叠面板等多种控件,适用于各种复杂的场景。
  • 高度可定制的界面:ControlKit的界面高度可定制,开发者可以根据需求调整控件的布局和样式。
  • 事件处理:ControlKit支持事件处理,允许开发者在参数变化时执行特定操作,提高了界面的互动性。

lil-gui

安装lil-gui

可以通过npm或直接下载源码的方式来安装lil-gui。推荐使用npm进行安装:

npm install lil-gui
基本用法
初始化lil-gui

在Three.js项目中引入lil-gui并进行初始化:

import * as THREE from 'three';
import GUI from 'lil-gui';
​
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
const renderer = new THREE.WebGLRenderer();
​
renderer.setSize(window.innerWidth, window.innerHeight);
document.body.appendChild(renderer.domElement);
​
// 创建一个简单的立方体
const geometry = new THREE.BoxGeometry();
const material = new THREE.MeshBasicMaterial({ color: 0x00ff00 });
const cube = new THREE.Mesh(geometry, material);
scene.add(cube);
​
camera.position.z = 5;
​
// 初始化lil-gui
const gui = new GUI();
const cubeFolder = gui.addFolder('Cube');
cubeFolder.add(cube.rotation, 'x', 0, Math.PI * 2).name('Rotation X');
cubeFolder.add(cube.rotation, 'y', 0, Math.PI * 2).name('Rotation Y');
cubeFolder.add(cube.rotation, 'z', 0, Math.PI * 2).name('Rotation Z');
cubeFolder.add(cube.position, 'x', -5, 5).name('Position X');
cubeFolder.add(cube.position, 'y', -5, 5).name('Position Y');
cubeFolder.add(cube.position, 'z', -5, 5).name('Position Z');
cubeFolder.open();
​
function animate() {requestAnimationFrame(animate);renderer.render(scene, camera);
}
​
animate();

在上述代码中,我们创建了一个基本的Three.js场景,并使用lil-gui创建了一个控制面板来实时调整立方体的旋转和位置。

控制物体的旋转和位置

我们可以通过lil-gui的add方法将需要调整的属性添加到控制面板中。例如,控制立方体的旋转和位置:

cubeFolder.add(cube.rotation, 'x', 0, Math.PI * 2).name('Rotation X');
cubeFolder.add(cube.rotation, 'y', 0, Math.PI * 2).name('Rotation Y');
cubeFolder.add(cube.rotation, 'z', 0, Math.PI * 2).name('Rotation Z');
cubeFolder.add(cube.position, 'x', -5, 5).name('Position X');
cubeFolder.add(cube.position, 'y', -5, 5).name('Position Y');
cubeFolder.add(cube.position, 'z', -5, 5).name('Position Z');
高级用法
动态调整材质属性

image.png

lil-gui可以调整物体的材质属性,例如颜色和线框模式:

const materialFolder = gui.addFolder('Material');
const materialParams = {color: material.color.getHex(),wireframe: material.wireframe,
};
​
materialFolder.addColor(materialParams, 'color').name('Color').onChange((value) => {material.color.set(value);
});
materialFolder.add(materialParams, 'wireframe').name('Wireframe').onChange((value) => {material.wireframe = value;
});
materialFolder.open();
添加自定义按钮

image.png

lil-gui允许我们添加自定义按钮来执行特定操作,例如重置场景:

const actions = {reset: () => {cube.position.set(0, 0, 0);cube.rotation.set(0, 0, 0);},
};
​
gui.add(actions, 'reset').name('Reset Cube');
使用对象进行分组

image.png

lil-gui支持将参数分组,这样可以更好地组织控制面板:

const params = {rotation: {x: cube.rotation.x,y: cube.rotation.y,z: cube.rotation.z,},position: {x: cube.position.x,y: cube.position.y,z: cube.position.z,}
};
​
const rotationFolder = gui.addFolder('Rotation');
rotationFolder.add(params.rotation, 'x', 0, Math.PI * 2).name('X').onChange((value) => {cube.rotation.x = value;
});
rotationFolder.add(params.rotation, 'y', 0, Math.PI * 2).name('Y').onChange((value) => {cube.rotation.y = value;
});
rotationFolder.add(params.rotation, 'z', 0, Math.PI * 2).name('Z').onChange((value) => {cube.rotation.z = value;
});
​
const positionFolder = gui.addFolder('Position');
positionFolder.add(params.position, 'x', -5, 5).name('X').onChange((value) => {cube.position.x = value;
});
positionFolder.add(params.position, 'y', -5, 5).name('Y').onChange((value) => {cube.position.y = value;
});
positionFolder.add(params.position, 'z', -5, 5).name('Z').onChange((value) => {cube.position.z = value;
});
lil-gui的优势
  • 现代化界面:lil-gui拥有现代化的用户界面,设计简洁美观,用户体验良好。
  • 高性能:lil-gui专注于性能优化,适用于复杂的WebGL项目。
  • 丰富的控件类型:提供了丰富的控件类型,包括滑块、颜色选择器、按钮、折叠面板等,能够满足各种需求。
  • 易用性:lil-gui的API设计简洁,易于上手和使用。

附送250套精选项目源码

源码截图

 源码获取:关注公众号「码农园区」,回复 【源码】,即可获取全套源码下载链接

这篇关于【Three.js】知识梳理十六:图形界面工具(GUI)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1057191

相关文章

JS常用组件收集

收集了一些平时遇到的前端比较优秀的组件,方便以后开发的时候查找!!! 函数工具: Lodash 页面固定: stickUp、jQuery.Pin 轮播: unslider、swiper 开关: switch 复选框: icheck 气泡: grumble 隐藏元素: Headroom

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

sqlite3 相关知识

WAL 模式 VS 回滚模式 特性WAL 模式回滚模式(Rollback Journal)定义使用写前日志来记录变更。使用回滚日志来记录事务的所有修改。特点更高的并发性和性能;支持多读者和单写者。支持安全的事务回滚,但并发性较低。性能写入性能更好,尤其是读多写少的场景。写操作会造成较大的性能开销,尤其是在事务开始时。写入流程数据首先写入 WAL 文件,然后才从 WAL 刷新到主数据库。数据在开始

高效录音转文字:2024年四大工具精选!

在快节奏的工作生活中,能够快速将录音转换成文字是一项非常实用的能力。特别是在需要记录会议纪要、讲座内容或者是采访素材的时候,一款优秀的在线录音转文字工具能派上大用场。以下推荐几个好用的录音转文字工具! 365在线转文字 直达链接:https://www.pdf365.cn/ 365在线转文字是一款提供在线录音转文字服务的工具,它以其高效、便捷的特点受到用户的青睐。用户无需下载安装任何软件,只

在JS中的设计模式的单例模式、策略模式、代理模式、原型模式浅讲

1. 单例模式(Singleton Pattern) 确保一个类只有一个实例,并提供一个全局访问点。 示例代码: class Singleton {constructor() {if (Singleton.instance) {return Singleton.instance;}Singleton.instance = this;this.data = [];}addData(value)

Java 创建图形用户界面(GUI)入门指南(Swing库 JFrame 类)概述

概述 基本概念 Java Swing 的架构 Java Swing 是一个为 Java 设计的 GUI 工具包,是 JAVA 基础类的一部分,基于 Java AWT 构建,提供了一系列轻量级、可定制的图形用户界面(GUI)组件。 与 AWT 相比,Swing 提供了许多比 AWT 更好的屏幕显示元素,更加灵活和可定制,具有更好的跨平台性能。 组件和容器 Java Swing 提供了许多

系统架构师考试学习笔记第三篇——架构设计高级知识(20)通信系统架构设计理论与实践

本章知识考点:         第20课时主要学习通信系统架构设计的理论和工作中的实践。根据新版考试大纲,本课时知识点会涉及案例分析题(25分),而在历年考试中,案例题对该部分内容的考查并不多,虽在综合知识选择题目中经常考查,但分值也不高。本课时内容侧重于对知识点的记忆和理解,按照以往的出题规律,通信系统架构设计基础知识点多来源于教材内的基础网络设备、网络架构和教材外最新时事热点技术。本课时知识

【Linux 从基础到进阶】Ansible自动化运维工具使用

Ansible自动化运维工具使用 Ansible 是一款开源的自动化运维工具,采用无代理架构(agentless),基于 SSH 连接进行管理,具有简单易用、灵活强大、可扩展性高等特点。它广泛用于服务器管理、应用部署、配置管理等任务。本文将介绍 Ansible 的安装、基本使用方法及一些实际运维场景中的应用,旨在帮助运维人员快速上手并熟练运用 Ansible。 1. Ansible的核心概念

Node.js学习记录(二)

目录 一、express 1、初识express 2、安装express 3、创建并启动web服务器 4、监听 GET&POST 请求、响应内容给客户端 5、获取URL中携带的查询参数 6、获取URL中动态参数 7、静态资源托管 二、工具nodemon 三、express路由 1、express中路由 2、路由的匹配 3、路由模块化 4、路由模块添加前缀 四、中间件

EasyPlayer.js网页H5 Web js播放器能力合集

最近遇到一个需求,要求做一款播放器,发现能力上跟EasyPlayer.js基本一致,满足要求: 需求 功性能 分类 需求描述 功能 预览 分屏模式 单分屏(单屏/全屏) 多分屏(2*2) 多分屏(3*3) 多分屏(4*4) 播放控制 播放(单个或全部) 暂停(暂停时展示最后一帧画面) 停止(单个或全部) 声音控制(开关/音量调节) 主辅码流切换 辅助功能 屏