unity tag

36 questions


1 answers
107 views
0
UNI.T C# new plane (Vector3.up, Vector3.zero); I'm curious about this coding

I'm just going to use the plane as the floor Plane groundPlane = new Plane(Vector3.up, Vector3.zero);What's the point of doing this?I don't know the difference Why adjust the Vector value and why the...

1 years ago

1 answers
94 views
0
I want to know the types of 3D engines.

Hi, everyone.The lab is trying to implement AR augmented reality.I heard that we need to use 3D engines such as Unity and OvenGel.Can you tell me what kinds are there?Thank you.

1 years ago

1 answers
98 views
0
Unity engine (ball bouncing) Change the color of the ball received by Color to the image.

I'm making a ball bouncing game through UNI.T 2D.Make a circular ball and color the ballI want to import and apply a specific image.I'd like to change it. [The image has been modified to fit the size ...

1 years ago

1 answers
72 views
0
C#, MySQL DB, UNI.T. linked questions Help me!

Hello.I'm a beginner who just started coding for games.While watching the YouTube video this time, I was making the unity login system into C# and MySQL DB.It works normally in the video, but I don't ...

1 years ago

1 answers
93 views
0
I really want to develop a game through Unity with Windows XP SP2.

Hi, how are you?I am a student who has been planning to develop Android games with my friends for fun since about a month or two ago.I'm trying to start a real development because the plan is pretty w...


1 answers
97 views
0
I want to move objects smoothly within a function, not update.

Within the Update function, you can move objects smoothly using Lerp and time.deltaTime. But I don't know how to implement it within the functions I define.using System.Collections;using System.Collec...

1 years ago

1 answers
123 views
0
I want to change the transparency of the image inserted into Unity Sprite.

using System.Collections;using System.Collections.Generic;using UnityEngine;public class appear : MonoBehaviour { Color color; // // Use this for initialization void Start () { SpriteRenderer spr = G...

1 years ago

1 answers
80 views
0
UNI.T Naver Clova face recognition link.

Hi, everyone.I would like to link Naver API to UNI.T.T.First of all, it works well on C# When UNI.T spins it TlsException: Invalid certificate received from server. Error code: 0xffffffff80092012Mono....

1 years ago

1 answers
65 views
0
Unity Lerp Linear Interpolation

using System.Collections;using System.Collections.Generic;using UnityEngine;public class TitanAttack : MonoBehaviour {public GameObject player;public GameObject titan;public GameObject Rhand;public Ga...

1 years ago

1 answers
108 views
0
It's a question from UNI.T

void OnTriggerEnter2D (Collider other) { if (other.gameObject.CompareTag (bad)) { Destroy (gameObject); } I have to make my object disappear, but it doesn't work

1 years ago
« - 2 - »

© 2024 OneMinuteCode. All rights reserved.