Skip to content

Instantly share code, notes, and snippets.

@tatsuya1970
tatsuya1970 / inputPrompt.cs
Created November 26, 2023 02:50
UnityでOpenAI DALL E3のAPIを使う
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.Networking;
using System;
using TMPro; //TextMeshPro
using System.Threading.Tasks; //非同期処理
public class inputPrompt : MonoBehaviour
{
public Button button; // OKボタン
@tatsuya1970
tatsuya1970 / index.html
Created August 5, 2023 11:23
ChatGPTのデモ
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<style>
body {
background-color: #ffffff;
color: #000000;
display: flex;
flex-direction: column;
@tatsuya1970
tatsuya1970 / chat.cs
Last active July 18, 2023 14:00
ChatGPT + Cesium for Unity + Google Photorealistic
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.Networking;
using System;
using Defective.JSON;
using TMPro; //TextMeshPro
using System.Threading.Tasks; //非同期処理
using System.IO;
@tatsuya1970
tatsuya1970 / index.html
Last active March 21, 2022 09:34
StartupWeenkend 広島で作った猫ロボットのMVP
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>CatRobot</title>
<style>
body{
text-align:center; /*ページ全体を中央揃えにする*/