Language:

サイドバー

バーチャルキャスト公式Wiki

メニュー

Steam版

デバイス

アセット

配信

その他

リリース情報

デベロッパー向け


開発環境

GLB

vci:sample:onuse:no5

アイテムを使ったときに柄が変わるポスター

このデータは「バーチャルキャスト1.5.1a以降」で動作します。

SetTextureOffset を利用したマテリアル操作のサンプルVCIです。

サンプルデータ

解説

アイテムを使ったときに絵柄が切り替わります。

使用しているテクスチャは以下のように3×3の画像をタイリングしたものを
vci.assets.material._ALL_SetTextureOffsetFromIndex」でUVのOffset移動を行っています。

Material名を指定する「vci.assets.material._ALL_SetTextureOffset」でも変更可能です。
本サンプルでは「board_5tai7」というMaterial名で指定できます。

看板が表示される面のUVは3×3の1マス分を指定しています。
(UVの設定はblender、Mayaなどの3Dツールをご使用ください)

VCIスクリプト

main.lua
local assets = vci.assets
local count = 0
if vci.state.Get("COUNT") then
    count = vci.state.Get("COUNT")
end
local TOTAL = 6
 
function SetTextureOffset( count )
    local offset = Vector2.zero
 
    -- y shift
    local Yshift = math.floor(count / 3)
    offset.y = -(1/3) * Yshift
 
    -- x shift
    local Xshift = count % 3
    offset.x = (1/3) * Xshift
 
    assets.material._ALL_SetTextureOffsetFromIndex(0, offset)
end
SetTextureOffset(count)
 
function onUse(use)
    if count >= TOTAL-1 then
        count = 0
    else
        count = count + 1
    end
    vci.state.Set("COUNT", count)
    SetTextureOffset(count)
end
vci/sample/onuse/no5.txt · 最終更新: 2023/09/28 21:11 by pastatto

ページ用ツール