COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20200907155218/https://github.com/topics/unity-engine
Here are
33 public repositories
matching this topic...
Distributed server for social and realtime games and apps.
🚀 Actors is a framework empowering developers to make better games faster on Unity.
Asynchronous operations (promises) for Unity3d.
lightweight IRC client component for use with the Unity Engine.
UIWidget is a Unity Package which helps developers to create, debug and deploy efficient, cross-platform Apps.
A Unity Engine Project in which a controllable wall-walking spider uses inverse kinematics (IK) to position its legs to its surroundings, such that it moves realistically.
PoC of an ESP in Escape from Tarkov via External
🔒 Archived. Character locomotion demo made in Unity 5.
Project Planeverb is a CPU based real-time wave-based acoustics engine for games. It comes with an integration with the Unity Engine.
A school project by the German inf21-Kurs ;-)
its is a 3D obstacle avoiding game. It is created using UNITY ENGINE. Its a class project game, inspired by Subway Surfers.
Gif decoding utility for Unity engine
Simple Unity3D mobile game for Windows Phone and Android.
🔒 Archived. Character demo in Unity 5 with aiming and shooting mechanics.
Simple ASP.NET-like dependency injection for Unity.
Proyecto Final - Diseño de Software
An implementation of the contextual cueing paradigm in the Unity Engine. New features will be added step by step.
Repositório de projeto utilizado para manter os projetos práticos desenvolvidos para o meu blog sologamedevblog.wordpress.com
Unity Engine Ready Playable Desktop (Windows OS) Game Created With C#
Updated
Aug 5, 2020
Inno Setup
Unity device unique identifier data server.
Updated
Dec 5, 2019
JavaScript
Scripting manual for JCSUnity API.
Updated
Aug 12, 2020
JavaScript
🔒 Archived. Prototype first person character controller made in Unity 5.
Augmented Reality application
portable unity engine reverse shell (or unity engine game backdoor)
Evaluating the impact of curriculum learning on the training process for an intelligent agent in a video game
Minicurso básico em Unity 3D ministrado na Semana da Computação da Universidade Federal Fluminense, outubro de 2019.
A mashup of Line Rider and Flappy Bird, the game is phone ready! Developed in Unity engine C#.
Utilities and Resources for the development of Unity Engine Projects
Improve this page
Add a description, image, and links to the
unity-engine
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
unity-engine
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
個人測試中使用了兩個scene做場景的切換,scene1跟scene2,
scene1跟scene2各擺放一個按鈕做場景切換,
並在scene1最下方,另外擺放了uiwidgets的TextField widget做獲取虛擬鍵盤高度測試,
另外我想要在場景切換時TextField不被destroy,
所以使用了DontDestroyOnLoad讓TextField一直保持存在,
當我啟動程式時,預設為scene1,
這時點擊TextField時可獲取虛擬鍵盤高度,並把TextField往上推,
關閉虛擬鍵盤時,TextField會回到原位,
這時再點擊切換場景按鈕,切換到scene2,
此時點擊TextField並獲取虛擬鍵盤高度值為零(有印log),
我是使用MediaQuery.of(this.context).viewInsets.bottom來獲取虛擬鍵盤高度。