The new Input System requires an Input Action Map?
Not true! You can still handle inputs in one line!
Old:
if (Input.GetKeyDown(Keycode. Space) Jump();
Current:
if (Keyboard.current.spaceKey.wasPressedThisFrame) Jump();
Source
#نکته #یونیتی
👉 @UnityEngine3D 👈
Not true! You can still handle inputs in one line!
Old:
if (Input.GetKeyDown(Keycode. Space) Jump();
Current:
if (Keyboard.current.spaceKey.wasPressedThisFrame) Jump();
Source
#نکته #یونیتی
👉 @UnityEngine3D 👈
❤8👍3😁1
Normally Camera skips rendering of objects further away than farClipPlane. You can set up some Layers to use smaller culling distances using layerCullDistances.
When assigning, assign float array that has 32 values. Zero values mean "use far plane distance".
🔗 Binary Impact (@BinaryImpactG)
#نکته #یونیتی
👉 @UnityEngine3D 👈
When assigning, assign float array that has 32 values. Zero values mean "use far plane distance".
🔗 Binary Impact (@BinaryImpactG)
#نکته #یونیتی
👉 @UnityEngine3D 👈
❤2🤔2
This media is not supported in your browser
VIEW IN TELEGRAM
Did you know you can Create and edit 3D models directly inside Unity? 🧱🖌️ 😎
🔗 Sunny Valley Studio (@SunnyVStudio)
#نکته #یونیتی
👉 @UnityEngine3D 👈
🔗 Sunny Valley Studio (@SunnyVStudio)
#نکته #یونیتی
👉 @UnityEngine3D 👈
👍6
This media is not supported in your browser
VIEW IN TELEGRAM
Input System package in Unity 6 is no joke! 😁 Learn how to use it in 60 seconds! 🕹️
🔗 Sunny Valley Studio (@SunnyVStudio)
#نکته #یونیتی
👉 @UnityEngine3D 👈
🔗 Sunny Valley Studio (@SunnyVStudio)
#نکته #یونیتی
👉 @UnityEngine3D 👈
👍2❤1
This media is not supported in your browser
VIEW IN TELEGRAM
Project Auditor package in Unity 6.1 can identify performance bottlenecks in your project and help you optimize them with just a few clicks ⚡️🔨
🔗 Sunny Valley Studio (@SunnyVStudio)
#نکته #یونیتی
👉 @UnityEngine3D 👈
🔗 Sunny Valley Studio (@SunnyVStudio)
#نکته #یونیتی
👉 @UnityEngine3D 👈
❤3
Did you know that in Unity 6 you can assign default references to your PropertyDrawers!
🔗 Karl Jones (@KarlJamesJones)
#نکته #یونیتی
👉 @UnityEngine3D 👈
🔗 Karl Jones (@KarlJamesJones)
#نکته #یونیتی
👉 @UnityEngine3D 👈
👍1
6000.1.0f1
https://beta.unity3d.com/download/4c44e0f62b51/download.html
unityhub://6000.1.0f1/4c44e0f62b51
#releases
👉 @UnityEngine3D 👈
https://beta.unity3d.com/download/4c44e0f62b51/download.html
unityhub://6000.1.0f1/4c44e0f62b51
#releases
👉 @UnityEngine3D 👈
👍2
Ever wondered how to render only the shadow of a mesh? No need for a specialized shader, just set the Lighting in the Mesh Renderer to Shadows only.
🔗 Binary Impact (@BinaryImpactG)
#نکته #یونیتی
👉 @UnityEngine3D 👈
🔗 Binary Impact (@BinaryImpactG)
#نکته #یونیتی
👉 @UnityEngine3D 👈
Did you know that TextMeshPro Input fields offer a kind of input validation?
You can select it in the inspector and the documentation explains the options in detail.
🔗 Binary Impact (@BinaryImpactG)
#نکته #یونیتی
👉 @UnityEngine3D 👈
You can select it in the inspector and the documentation explains the options in detail.
🔗 Binary Impact (@BinaryImpactG)
#نکته #یونیتی
👉 @UnityEngine3D 👈
❤1👍1
With the Memory Profiler package you can easily detect where exactly a memory heavy asset was used.
Install it via the Package Manager for this and many more useful applications!
🔗 Binary Impact (@BinaryImpactG)
#نکته #یونیتی
👉 @UnityEngine3D 👈
Install it via the Package Manager for this and many more useful applications!
🔗 Binary Impact (@BinaryImpactG)
#نکته #یونیتی
👉 @UnityEngine3D 👈
❤1👍1
Did you know that there is an alternative to the classic foreach loop when using List<T>? It comes with a built in ForEach(Action<T>) method.
It's a very controversial topic, tell us in the comments what your take is on performance, readability and style.
🔗 Binary Impact (@BinaryImpactG)
#نکته #یونیتی
👉 @UnityEngine3D 👈
It's a very controversial topic, tell us in the comments what your take is on performance, readability and style.
🔗 Binary Impact (@BinaryImpactG)
#نکته #یونیتی
👉 @UnityEngine3D 👈
👍3
This media is not supported in your browser
VIEW IN TELEGRAM
Use Spline Package to place objects along a path or to create smooth object movement in Unity! 📦🎮
For example to create a Train game 🚂 🙂
🔗 Sunny Valley Studio (@SunnyVStudio)
#نکته #یونیتی
👉 @UnityEngine3D 👈
For example to create a Train game 🚂 🙂
🔗 Sunny Valley Studio (@SunnyVStudio)
#نکته #یونیتی
👉 @UnityEngine3D 👈
🔥4👍2❤1
Because I went 16 years without knowing what "Fadeout to Grey" could be used for in Unity, here's a unitytip about detail textures (spoiler: it's basically a requirement for them)
🔗 Austin Schaeffer (@SchaefferAustin)
#نکته #یونیتی
👉 @UnityEngine3D 👈
🔗 Austin Schaeffer (@SchaefferAustin)
#نکته #یونیتی
👉 @UnityEngine3D 👈
❤3
Debug.Assert expects you to enter a condition and lets you print an error message to the console if the condition you entered returns false.
Assertions are often a better choice than a Debug.Log call.
🔗 Binary Impact (@BinaryImpactG)
#نکته #یونیتی
👉 @UnityEngine3D 👈
Assertions are often a better choice than a Debug.Log call.
🔗 Binary Impact (@BinaryImpactG)
#نکته #یونیتی
👉 @UnityEngine3D 👈
👍2
Ever struggeling with a mess of material duplicates in your projects? Maybe it is time to get familiar with material variants!
Find the variant window in the top right of the inspector with a material selected and configure away!
🔗 Binary Impact (@BinaryImpactG)
#نکته #یونیتی
👉 @UnityEngine3D 👈
Find the variant window in the top right of the inspector with a material selected and configure away!
🔗 Binary Impact (@BinaryImpactG)
#نکته #یونیتی
👉 @UnityEngine3D 👈
👍1
This media is not supported in your browser
VIEW IN TELEGRAM
Make Unity-specific methods STAND OUT in Visual Studio by changing their color🔍🎨😎
🔗 Sunny Valley Studio (@SunnyVStudio)
#نکته #یونیتی
👉 @UnityEngine3D 👈
🔗 Sunny Valley Studio (@SunnyVStudio)
#نکته #یونیتی
👉 @UnityEngine3D 👈
👏4👍1
How to install UnityHub and Unity with activation steps
آموزش نصب یونیتی و یونیتی هاب به همراه مراحل
فعالسازی بدون دردسر
زیاد توی چت به مشکل خورده بودید، ویدیوی کاملش رو براتون گذاشتم
🔗 یوتیوب
دو تا راه برای نصب هاب گفتم که روش winget ساده تره و درگیر تحریم هم نمیشه
#آموزش #یونیتی
👉 @UnityEngine3D 👈
آموزش نصب یونیتی و یونیتی هاب به همراه مراحل
فعالسازی بدون دردسر
زیاد توی چت به مشکل خورده بودید، ویدیوی کاملش رو براتون گذاشتم
🔗 یوتیوب
دو تا راه برای نصب هاب گفتم که روش winget ساده تره و درگیر تحریم هم نمیشه
#آموزش #یونیتی
👉 @UnityEngine3D 👈
👌4👍2
تغییر مهم در اکوسیستم اندروید؛ توسعهدهندگان ایرانی قربانی قانون جدید میشوند؟
https://www.zoomit.ir/software-application/446799-android-developer-verification-requirements/
https://www.zoomit.ir/software-application/446799-android-developer-verification-requirements/
زومیت
تغییر مهم در اکوسیستم اندروید؛ توسعهدهندگان ایرانی قربانی قانون جدید میشوند؟
گوگل سازوکار احراز هویت توسعهدهندگان و سایدلود اپلیکیشنها در سیستمعامل اندروید را تغییر میدهد.
💔1