あらーと
https://lh3.googleusercontent.com/a-/AOh14Gh0Z_h4S6llIVJ0Ndzs6kR-YFeK36o5IaD-HtJcKw#.png
モデリングしたり,VR/ARを勉強して何かいろいろ作っています.大学生.
あらーと.icon最近は lighting について学んでいます.
作ったワールド
https://gyazo.com/f8dc22953f6ef1e5e0ebd145557cdec7https://gyazo.com/c01481f214db4729e0579090829b785fhttps://gyazo.com/293cf5e9165c5879660ef8e33e252d53
現在進行形で作っています.フルスクラッチ.
ある程度できあがったのでこれにて完成です.
上のワールドが肥大化してきたので,最小単位で作成し直したワールド.
アイテムを用いて空を彩りましょう
穏やかな波音と月明かりがうつくしい部屋です.ほぼ実家
南国気分の明るいお部屋です.実質実家
シンプルな映画館です.
ジャンプ機能が搭載されたその日に仕様を確認するために作ったワールド.垂直1.2m,水平方向に2.5mまで飛べる事がわかった.
ジャンプできるようになったためハードル走がしたくなり作成したワールド.
アイテム機能が追加されたので挙動を確かめるために作成したワールド.ここで freeze rotation が効かないことが判明した.
カメラとスクリーンを手に持って投影できるワールドです.ミーティングルームへ実装のための試作ワールド
UserCSS
code:style.css
.deco-\{, .deco-\} {
font-size: 1em;
padding: 0.1em 0.2em 0.1em 0.2em;
border-radius: 0.4em;
margin: auto 0.3em;
display: inline-block;
max-width: calc(100% - 100px);
vertical-align: top;
}
.deco-\{:before {
position: absolute;
margin: 0;
padding: 0;
transform: translateX(-100%) translateY(calc(1em - 80%));
width: 0;
content: "";
border-width: 0 0 0.6em 0.6em;
border-style: solid;
}
.deco-\}:after {
position: absolute;
margin: 0;
padding: 0;
transform: translateY(calc(1em - 80%));
width: 0;
content: "";
border-width: 0 0.6em 0.6em 0;
border-style: solid;
}
.deco-\! {
padding: 0.1em 0.2em 0.1em 0.2em;
}
code:script.js
scrapbox.PopupMenu.addButton({
title : 'Embed Tweet',
onClick : text => {
const convertContent = (content, indent) => {
const replaced = content
.replace(/<a href="(https?:.*?)">(.*?)<\/a>/g, '$1 $2') .replace(/<br>/g, \n${indent});
const elem = document.createElement('div');
elem.innerHTML = replaced;
return indent + elem.innerText;
}
const tweetRegex = /(?<spaces>\t *)<blockquote\w"\-= *><p\w"\-= *>(?<content>.*)<\/p>—(?<author>.*)(?<link><a.*>)<\/blockquote>\n\t *<script.*?><\/script>/; const match = text.match(tweetRegex);
if(!match) return;
const {spaces, content, author, link} = match.groups;
const ind = ${spaces}>;
return text.replace(tweetRegex, convertContent(content, ind) + '\n' + convertContent(\t—${author} ${link}, ind));
}
})
code:style.css
@import url("/api/code/help-jp/文字装飾記法/style.css")
.deco-\# {
background-color: #6a6; /* 緑背景 */ }
.deco-\! { /* 重要な部分は!を付ける */
background-color: #e66; /* 赤背景 */ font-size: 1.2em;
}
.deco-\% {
font-size: 1.2em;
}
.deco-\# {
font-size: 1.2em;
}
.deco-\~ {
font-size: 1.2em;
}