Jump to content

Recommended Posts

8 hours ago, Interfearance said:

So I always did 3d modeling, but I would use Iray materials for renders in Marmoset (to name one renderer).

I usually use Keyshot. But when it comes directly to the content for the game, there is nothing better than to show it in the game engine. So you can not fool the viewer.

 

8 hours ago, Interfearance said:

What kinds of materials do you use for source models? Do you make them, or are preexisting ones adequate?

From situation to situation. For each model in different ways. UV models are designed to use one of the standard textures from the game. In case if I will be limit, I’ll just change the path from my textures to the textures from the developers.

 

8 hours ago, Interfearance said:

Also is that a water blend texture, or are those particles on the water decals?

I used 2 layers. Base layer - it is water, similar material like the aztec map. And second layer above a first - it is a blend texture with alpha. 

Link to comment
Share on other sites

  • 2 weeks later...
On 8/10/2019 at 12:18 PM, untor said:

Swamp autocombine of props

Hi Mapcore! Today, I want to show you, great stuff!
I finally figured out the issue of auto-combination of props_static.
I have a many props environment, tree, woods construction and others, and all built on a modular system.
And I initially wanted that, as a result, they were clustered. But without the final problems and mistake at release.
 

What's your process of that if I may ask?

I thought autocombine turned out unusable for us non-Valve plebs. Would be cool to see how it's done properly

Link to comment
Share on other sites

5 hours ago, El_Exodus said:

What's your process of that if I may ask?

I thought autocombine turned out unusable for us non-Valve plebs. Would be cool to see how it's done properly

https://developer.valvesoftware.com/wiki/Static_Prop_Combine you need the source filesfor the models + qcs. not sure if crowbar works.

Link to comment
Share on other sites

13 hours ago, El_Exodus said:

What's your process of that if I may ask?

I thought autocombine turned out unusable for us non-Valve plebs. Would be cool to see how it's done properly

Its work for my, only on my content. I was make copy CS:GO folder and rename it to "game" (*//common/game/*) and change source folder for my source .qcs and .fbx files to "content" (*//common/content/*) and full recompile all my props. I think, if you want used original content, you must recompile it. 
Now i have a 2 copy CS:GO games: 1 - clear for play, 2 - for mapping. 
Then you need make a "*//common/game/csgo/scripts/hammer/spcombinerules.txt"
 

Quote

	"wood_planks" //name of the combine group, used for the final model name in the level
	{
		// this is a stub qc that will be used to generate combined models
		"qc_template_path"	"scripts/hammer/spcombinerules/qc_templates/wood_planks.qc"
		
		// max models per cluster using these peers
		"cluster_limit" 8
		
		// don't cluster models greater than this far apart
		"distance_limit" 12

		// these are models that can combine with each other
		"peers"
		{
			"models/swamp/woods/wood_rail_128.mdl" ""
			"models/swamp/woods/wood_rail_128_a.mdl" ""
			"models/swamp/woods/wood_rail_64.mdl" ""
                        "models/swamp/woods/wood_rail_64_a.mdl" ""
		}
	}

and now you need a stub file in "*//common/game/csgo/scripts/hammer/spcombinerules/qc_templates/example.qc"
it eazy file
 

Quote

$cdmaterials "models\swamp\woods"
$staticprop
$surfaceprop "wood"
$texturegroup wood_planks 
{
	{ "wood_planks_a" }
	{ "wood_planks_b" }
}

and now, need compile a map with Combine settings in VBSP
-StaticPropCombine
-StaticPropCombine_AutoCombine
-StaticPropCombine_SuggestRules
-KeepSources (for checking in hammer)
-StaticPropCombine_ColorInstances (for checking after compile in game, it add random color for combined props)

Link to comment
Share on other sites

  • 1 month later...

Looks really cool so far! Take care of player visibility! :)

On 8/10/2019 at 12:18 PM, untor said:

Hi Mapcore! Today, I want to show you, great stuff!
I finally figured out the issue of auto-combination of props_static.

Seems like you are still the only one who managed to make the autocombine feature work...

I tried it for a while, but it still doesn't do anything. No errors, nothing at all...

- So the *.qc (and the other source files) of your model has to be in "SteamApps/common/content/csgo/", right?

- Anything special about the qc? Is there a chance that you could share an example *.qc file?

- What about the other source files: Which file format? *.smd or *.dmx?

- What compiler do you use to compile the model? (Is "Crowbar" ok? https://steamcommunity.com/groups/CrowbarTool )

On 8/12/2019 at 7:55 AM, untor said:

and now, need compile a map with Combine settings in VBSP
-StaticPropCombine
-StaticPropCombine_AutoCombine
-StaticPropCombine_SuggestRules
-KeepSources (for checking in hammer)
-StaticPropCombine_ColorInstances (for checking after compile in game, it add random color for combined props) 

- So these are your compile commands for vbsp: -StaticPropCombine -StaticPropCombine_AutoCombine -StaticPropCombine_SuggestRules -KeepSources -StaticPropCombine_ColorInstances -game $gamedir $path\$file

( -StaticPropCombine_AutoCombine makes it ignore your spcombinerules.txt  afaik)

- stub qc and spcombinerules.txt as you described above (according to this: https://developer.valvesoftware.com/wiki/Static_Prop_Combine )

- anything else?

Edited by Radix
Link to comment
Share on other sites

10 hours ago, Radix said:

Looks really cool so far! Take care of player visibility! :)

Seems like you are still the only one who managed to make the autocombine feature work...

I tried it for a while, but it still doesn't do anything. No errors, nothing at all...

- So the *.qc (and the other source files) of your model has to be in "SteamApps/common/content/csgo/", right?

- Anything special about the qc? Is there a chance that you could share an example *.qc file?

- What about the other source files: Which file format? *.smd or *.dmx?

- What compiler do you use to compile the model? (Is "Crowbar" ok? https://steamcommunity.com/groups/CrowbarTool )

- So these are your compile commands for vbsp: -StaticPropCombine -StaticPropCombine_AutoCombine -StaticPropCombine_SuggestRules -KeepSources -StaticPropCombine_ColorInstances -game $gamedir $path\$file

( -StaticPropCombine_AutoCombine makes it ignore your spcombinerules.txt  afaik)

- stub qc and spcombinerules.txt as you described above (according to this: https://developer.valvesoftware.com/wiki/Static_Prop_Combine )

- anything else?

If you want, i can told with you in Discord and try to help you with Autocombine, and then you can help me write a tutorial on english)) 

Link to comment
Share on other sites

19 hours ago, untor said:

If you want, i can told with you in Discord and try to help you with Autocombine, and then you can help me write a tutorial on english)) 

Sure, I can try to help you if none of the "tutorial guys" wants to. :D

Further discussion via pm I suggest, I don't want to hijack your thread. ;)

Edited by Radix
Link to comment
Share on other sites

 Share


  • MapCore on Discord

  • Our picks

    • [CS:GO] Shore
      One of the projects I worked on after I made de_austria.

      Yeah, I know the timing is really bad (CS2!), but can't change it... 🙁

      In general a lot went wrong during this project. Had a lot of problems with the layout, but I think I found a good compromise in the end. Also learned many new things. Maybe I would even be ready to create a really good map now after all, but I think that it's gonna be the final one. I really like making maps, but it has become too time consuming over the years for just being a hobby. Unfortunately I never managed to get a job in the games industry. So that's it. I hope it's a worthy ending of 20 years of making maps for me. 🙂

      Shore is a bomb defusal map for CS:GO that takes place on Lofoten Islands, Norway. (Also have a Hostage version of this that works well imo)

      Workshop link: https://steamcommunity.com/sharedfiles/filedetails/?id=2955084102

      I took some inspiration from this place in Norway:


      Layout:


      Some pictures:
      • 15 replies
×
×
  • Create New...