Method: U3d::WindowsInstallation#module_name_pattern

Defined in:
lib/u3d/installation.rb

#module_name_pattern(module_name) ⇒ Object



426
427
428
429
430
431
432
433
434
435
436
437
# File 'lib/u3d/installation.rb', line 426

def module_name_pattern(module_name)
  case module_name
  when 'Documentation'
    return "#{root_path}/Editor/Data/Documentation/"
  when 'StandardAssets'
    return "#{root_path}/Editor/Standard Assets/"
  when 'MonoDevelop'
    return "#{root_path}/MonoDevelop/"
  else
    UI.crash! "No pattern is known for #{module_name} on Windows"
  end
end