14 lines
192 B
Python
14 lines
192 B
Python
|
|
||
|
import bpy
|
||
|
|
||
|
|
||
|
def draw_context_menu(layout):
|
||
|
params = bpy.context.space_data.params
|
||
|
|
||
|
return
|
||
|
|
||
|
|
||
|
def draw_header(layout):
|
||
|
'''Draw the header of the Asset Browser Window'''
|
||
|
|
||
|
return
|