0
点赞
收藏
分享

微信扫一扫

[论文阅读] Improved Baselines with Visual Instruction Tuning

倚然君 2024-11-06 阅读 16

示例:

Unity烟花demo

 按钮控制脚本

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

public class FireworksController : MonoBehaviour
{
    public ParticleSystem fireworksParticle;
    // Start is called before the first frame update
    void Start()
    {
        fireworksParticle.Stop();
    }

  public void TriggerFireworks()
    {
        fireworksParticle.Play();
    }
}
举报

相关推荐

0 条评论