Skip to content

Commit

Permalink
part 1 of 5
Browse files Browse the repository at this point in the history
  • Loading branch information
that-corych committed Oct 11, 2022
1 parent 70a3a86 commit 62b8291
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 14 deletions.
29 changes: 16 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "assetto-corsa-extension-config-snippets",
"displayName": "Assetto Corsa Extension Config snippets",
"description": "Assetto Corsa Extension Config snippets for easily work with game",
"publisher": "corych",
"version": "0.0.1",
"engines": {
"vscode": "^1.72.0"
Expand Down
57 changes: 56 additions & 1 deletion snippets/ini_snippets.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"prefix": "material_license_plate",
"description": "Includes license plate materials base",
"body":[
"[INCLUDE: common/materials_licene_plate.ini]"
"[INCLUDE: common/materials_license_plate.ini]"
]
},

Expand Down Expand Up @@ -310,5 +310,60 @@
"DetailNormalPBRSmoothnessGamma = 1",
"DetailTextureBlur = 1"
]
},

"Include v2 leather interior material base":{
"prefix": "materials_interior_leather_v2",
"description": "Include v2 leather interior materials base",
"body": [
"[Material_Leather_v2]",
"Materials = Material",
"Reflectance = 0.04",
"DetailNormalTexture = common/pbr_leather_bumpy.dds",
"DetailNormalIntensity = 3",
"DetailNormalPBRSecondaryColor = 1, 1, 1, 0.08",
"DetailNormalBlend = -1"
]
},

"Include v2 spotty leather interior material base":{
"prefix": "materials_interior_spotty_leather_v2",
"description": "Include v2 spotty leather interior materials base",
"body": [
"[Material_LeatherSpotty_v2]",
"Materials = Material",
"Reflectance = 0.03",
"DetailNormalTexture = common/pbr_leather_spotty.dds",
"DetailNormalPBRSecondaryColor = 0, 0, 0, 0.1"
]
},

"Include v2 poked leather interior material base":{
"prefix": "materials_interior_poked_leather_v2",
"description": "Include v2 poked leather interior materials base",
"body": [
"[Material_LeatherPoked_v2]",
"Materials = Material",
"Reflectance = 0.04",
"DetailNormalTexture = common/pbr_leather_pattern.dds",
"DetailNormalIntensity = 2",
"DetailNormalPBRSecondaryColor = 0, 0, 0, 10",
"DetailNormalPBRReflectance = 10"
]
},

"Include v2 fabric interior material base":{
"prefix": "materials_interior_fabric_v2",
"description": "Include fabric interior materials base",
"body": [
"[Material_Fabric_v2]",
"Materials = Material",
"Reflectance = 0.02",
"DetailNormalTexture = common/pbr_fabric.dds",
"DetailNormalPBRSecondaryColor = 0, 0, 0, 0.3",
"UseClothShading = 1",
"Reflectance = 0.4",
"ClothSheenColor = 1, 1, 1"
]
}
}

0 comments on commit 62b8291

Please sign in to comment.