Cloth.thickness Manual     Reference     Scripting  
Scripting > Runtime Classes > Cloth
Cloth.thickness

var thickness : float

Description

The thickness of the cloth surface.

This is the distance kept between any cloth vertex and and other collider (or other cloth vertex if self-collision is enabled). Any object closer then this distance will collide with the cloth. If this value is too low, you may see the edges of objects intersecting the cloth surface. If this value is too high, you may see noticable distance between the cloth surface and colliding objects or stiffness in cloth motion if self-collision is enabled. Must be larger then zero.

JavaScript
transform.GetComponent(Cloth).thickness = 0.2;

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Example() {
transform.GetComponent<Cloth>().thickness = 0.2F;
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
transform.GetComponent[of Cloth]().thickness = 0.2F