0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ARFoundation キャラクターを平面に隠す・平面から出す

Last updated at Posted at 2021-07-26

GameObjectを作成し、Occlusion Boxに名前を変更する。Cubeを作成する
442BFE3F-44F5-4399-A9AC-58E2718F1E30_4_5005_c.jpeg

Occlusion BoxにCubeを子オブジェクトにする。CubeのYを−0.5にする。
33E17DC3-437E-4B79-B352-79BF9F03D18D_4_5005_c.jpeg

Occlusion BoXにCharacterを子オブジェクトにする。CharacterのYを−1にする。
04131D3E-D25C-48A0-B6D5-20484DEC1AA2.jpeg

MoveupCharacter
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class MoveupCharacter : MonoBehaviour
{
    private float speed = 0.1f; //キャラクターが移動する速さ

    void Update()
    {
        //キャラクターが箱から出たら停止する
        if (transform.localPosition.y < 0f)
        {
            //上方向に移動させる
            transform.localPosition += transform.up * speed * Time.deltaTime;
        }
    }
}

CharacterにMoveupCharacter.csをアタッチする
DE4BF7E3-8F82-49BC-9558-88052A597F7C.jpeg

AR SessionOriginのRaycastスクリプトにOcclusion Boxプレハブをアタッチする
373BD392-2D5F-4F30-A141-D9C278290A20.jpeg

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?