Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

unity unfreeze position in script

using UnityEngine;

public class FreezePosition : MonoBehaviour
{
    public GameObject TheThingToFreeze;
  	
    public void	Start()
    {
    	TheThingToFreeze.GetComponent<Rigidbody>().constraints = RigidbodyConstraints.None;  
    }
    
}    
Comment

PREVIOUS NEXT
Code Example
Csharp :: xml reader attributes 
Csharp :: get centerpoint of points transforms 
Csharp :: python mokeypatch asser called 
Csharp :: how to split string into a list ignoring number of spaces c# 
Csharp :: unity I run exe second monitor 
Csharp :: sqlsinifi.baglanti.open() 
Csharp :: using == is inefficient unity 
Csharp :: c# Windows Forms screenshot 
Csharp :: Web API - Stream large file to client 
Csharp :: viewsheet location revit api 
Csharp :: encode < for xml 
Csharp :: gridview column cell alignment form c# 
Csharp :: how to make header in unity public variables 
Csharp :: how to input data several times in c# 
Csharp :: how to make a respaen script in unity 
Csharp :: unity blender shadow messed up 
Csharp :: save form in asp.net mvc 
Csharp :: dotnet core ef add multiple records 
Csharp :: how can i only show just a part of alist in datagridview in c# 
Csharp :: c# create dll runtime 
Csharp :: .net core string compare ignore case and accents 
Csharp :: Remove tabpage by key 
Csharp :: how to detected WindowCloseEvent in other window wpf 
Csharp :: how to add logo in a unity game apk 
Csharp :: method declaration in c# 
Csharp :: Dynamically checking IList<T C# 
Csharp :: getString 
Csharp :: c# how to divide a list every 4 count 
Csharp :: set main camera unity 
Csharp :: unity overlapspherenonalloc 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =