Version: 2021.1
言語: 日本語
public ParticleSystemCullingMode cullingMode ;

説明

Configure whether the Particle System will still be simulated each frame, when it is offscreen.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { private ParticleSystem ps;

void Start() { ps = GetComponent<ParticleSystem>();

var main = ps.main; main.cullingMode = ParticleSystemCullingMode.AlwaysSimulate; } }