MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / GetParameterType

Method GetParameterType

Source/Engine/Scripting/Runtime/DotNet.cpp:1587–1593  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1585}
1586
1587MType* MMethod::GetParameterType(int32 paramIdx) const
1588{
1589 if (!_hasCachedSignature)
1590 CacheSignature();
1591 ASSERT_LOW_LAYER(paramIdx >= 0 && paramIdx < _paramsCount);
1592 return (MType*)_parameterTypes.Get()[paramIdx];
1593}
1594
1595bool MMethod::GetParameterIsOut(int32 paramIdx) const
1596{

Callers 1

GetMethodMethod · 0.45

Calls 1

GetMethod · 0.45

Tested by

no test coverage detected