Version: 2020.2
언어: 한국어

ComputeShader

class in UnityEngine

/

다음으로부터 상속:Object

매뉴얼로 전환

설명

Compute Shader asset.

Compute shaders are programs that run on the GPU outside of the normal rendering pipeline. They correspond to compute shader assets in the project (.compute files).

Compute shader support can be queried runtime using SystemInfo.supportsComputeShaders. See Compute Shaders overview for more info about platforms supporting compute shaders.

See Also: ComputeBuffer class, Compute Shaders overview.

변수

shaderKeywordsArray of locally enabled shader keywords.

Public 함수

DisableKeywordDisables a locally set Shader keyword.
DispatchExecute a compute shader.
DispatchIndirectExecute a compute shader.
EnableKeywordSets a Shader keyword locally for this Compute Shader.
FindKernelFind ComputeShader kernel index.
GetKernelThreadGroupSizesGet kernel thread group sizes.
HasKernelChecks whether a shader contains a given kernel.
IsKeywordEnabledSpecifies whether the Shader keyword is enabled in this Compute Shader.
SetBoolSet a bool parameter.
SetBufferSets an input or output compute buffer.
SetConstantBufferSets a ComputeBuffer or a GraphicsBuffer as a named constant buffer for the ComputeShader.
SetFloatSet a float parameter.
SetFloatsSet multiple consecutive float parameters at once.
SetIntSet an integer parameter.
SetIntsSet multiple consecutive integer parameters at once.
SetMatrixSet a Matrix parameter.
SetMatrixArraySet a Matrix array parameter.
SetTextureSet a texture parameter.
SetTextureFromGlobalSet a texture parameter from a global texture property.
SetVectorSet a vector parameter.
SetVectorArraySet a vector array parameter.

상속된 멤버

변수

hideFlagsShould the object be hidden, saved with the Scene or modifiable by the user?
nameThe name of the object.

Public 함수

GetInstanceIDReturns the instance id of the object.
ToStringReturns the name of the object.

정적 함수

DestroyRemoves a GameObject, component or asset.
DestroyImmediateDestroys the object obj immediately. You are strongly recommended to use Destroy instead.
DontDestroyOnLoadDo not destroy the target Object when loading a new Scene.
FindObjectOfTypeReturns the first active loaded object of Type type.
FindObjectsOfTypeGets a list of all loaded objects of Type type.
InstantiateClones the object original and returns the clone.

연산자

boolDoes the object exist?
operator !=Compares if two objects refer to a different object.
operator ==Compares two object references to see if they refer to the same object.