本文整理匯總了Python中rpcore.loader.RPLoader.load_3d_texture方法的典型用法代碼示例。如果您正苦於以下問題:Python RPLoader.load_3d_texture方法的具體用法?Python RPLoader.load_3d_texture怎麽用?Python RPLoader.load_3d_texture使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類rpcore.loader.RPLoader
的用法示例。
在下文中一共展示了RPLoader.load_3d_texture方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: on_pipeline_created
# 需要導入模塊: from rpcore.loader import RPLoader [as 別名]
# 或者: from rpcore.loader.RPLoader import load_3d_texture [as 別名]
def on_pipeline_created(self):
cloud_voxels = RPLoader.load_3d_texture(self.get_resource("slices/#.png"))
cloud_voxels.set_wrap_w(SamplerState.WM_clamp)
self.apply_stage.set_shader_input("CloudVoxels", cloud_voxels)
noise_tex = RPLoader.load_texture(self.get_resource("noise.png"))
noise_tex.set_minfilter(SamplerState.FT_linear_mipmap_linear)
self.apply_stage.set_shader_input("NoiseTex", noise_tex)