This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Frontec/Assets/Scripts/CameraWebRTC.cs

19 lines
298 B
C#
Raw Permalink Normal View History

2025-02-24 12:12:52 +09:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CameraWebRTC : MonoBehaviour
{
public Player player;
void Start()
{
}
// Update is called once per frame
void Update()
{
player.OnClick_Button_Send();
}
}