MCPcopy Create free account
hub / github.com/NVIDIA-RTX/Donut / SetBool

Method SetBool

src/engine/ConsoleObjects.cpp:492–492  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

490 template<> std::string const& VariableImpl<std::string>::GetString() const { return GetDataRef(); }
491
492 template<> void VariableImpl<bool>::SetBool(bool value, SetBy setby) { SetData(value, setby); }
493 template<> void VariableImpl<int>::SetInt(int value, SetBy setby) { SetData(value, setby); }
494 template<> void VariableImpl<int2>::SetInt2(int2 value, SetBy setby) { SetData(value, setby); }
495 template<> void VariableImpl<int3>::SetInt3(int3 value, SetBy setby) { SetData(value, setby); }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected