three加载三维vrm人物模型结合openai的api输入文字让三维人物做出任意动作代码

代码语言:html

所属分类:三维

代码描述:three加载三维vrm人物模型结合openai的api输入文字让三维人物做出任意动作代码

代码标签: three 三维 vrm 人物 模型 结合 openai api 输入 文字 人物 任意 动作

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Three.js VRM + OpenAI 动作控制</title>
    <style>
        body {
            margin: 0;
            overflow: hidden;
            background-color: #87ceeb;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        #ui-container {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: rgba(20, 20, 20, 0.85);
            padding: 15px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
        }
        .row {
            display: flex;
            gap: 10px;
            margin-bottom: 8px;
            width: 90%;
            max-width: 800px;
        }
        input {
            padding: 10px;
            border: 1px solid #444;
            border-radius: 5px;
            background: #333;
            color: #fff;
            outline: none;
        }
        input:focus {
            border-color: #007bff;
        }
        #api-key {
            flex: 1;
        }
        #command {
            flex: 3;
        }
        button {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            background: #007bff;
            color: white;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        button:hover {
            background: #0056b3;
        }
        #status {
            color: #ccc;
            font-size: 14px;
        }
    </style>
    
    <!-- 使用 Import Map 引入 Three.js、VRM加载器和 Tween.js -->
    <script type="importmap">
    {
        "imports": {
            .........完整代码请登录后点击上方下载按钮下载查看

网友评论0