User Tools

Site Tools


arma:terrain:v3_quick_tutorial

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
arma:terrain:v3_quick_tutorial [2008/05/04 16:43] – created v3_quick_tutorial initial page snakemanarma:terrain:v3_quick_tutorial [2024/08/01 13:03] (current) – links added. snakeman
Line 1: Line 1:
-====== Visitor 3 Quick Tutorial ======+====== ArmA 1 Visitor 3 Quick Tutorial ====== 
 + 
 +[[https://www.pmctactical.org/forum/viewforum.php?f=42|ArmA 1 Forum]], [[:arma|ArmA 1 Home]], [[arma:config|ArmA 1 Config]], [[arma:tools|ArmA 1 Tools]], [[arma:file_formats|ArmA 1 File Formats]], [[arma:missions|ArmA 1 Missions]], [[arma:modeling|ArmA 1 3D Modeling]], [[arma:terrain|ArmA 1 Terrain]], [[arma:texturing|ArmA 1 Texturing]], [[arma:scripting|ArmA 1 Scripting]] 
 + 
 +**ArmA 1** aka Armed Assault (ArmA)
  
 **Visitor 3 Quick Tutorial** by Opteryx **Visitor 3 Quick Tutorial** by Opteryx
Line 8: Line 12:
  
 Nota Bene: Please read through the entire quick tut before starting up any project, otherwise you might find out you've made an error and that could cost you valuable time in which you may not have to spare. Nota Bene: Please read through the entire quick tut before starting up any project, otherwise you might find out you've made an error and that could cost you valuable time in which you may not have to spare.
 +
  
 ====== Getting Started ====== ====== Getting Started ======
Line 23: Line 28:
 Kegetys [[arma:tools:paaplugin|paa Plugin]] for Photoshop (optional, but could prove useful) Kegetys [[arma:tools:paaplugin|paa Plugin]] for Photoshop (optional, but could prove useful)
  
-#A terrain editor like Wilbur, Terragen, L3DT(?) etc. there are many.+#A terrain editor like [[:tools:wilbur|Wilbur]], Terragen, [[tools:l3dt|L3DT]](?) etc. there are many.
  
 #A Creative mind (sort of optional) #A Creative mind (sort of optional)
  
 #PATIENCE MADE OF AGGREGATED DIAMOND NANORODS! This is absolutely imperative! #PATIENCE MADE OF AGGREGATED DIAMOND NANORODS! This is absolutely imperative!
 +
  
 ====== Downloads for Tools ====== ====== Downloads for Tools ======
Line 33: Line 39:
 [[arma:tools:visitor3|Visitor 3]] [[arma:tools:visitor3|Visitor 3]]
  
-[[http://www.ridgenet.net/~jslayton/software.html|Wilbur]]/[[http://www.planetside.co.uk/terragen/win/downloadwin.shtml|Terragen]] (You can download both, but you MUST download Wilbur since I'll be using in this tutorial.)+[[:tools:wilbur|Wilbur]]/[[http://www.planetside.co.uk/terragen/win/downloadwin.shtml|Terragen]] (You can download both, but you MUST download Wilbur since I'll be using in this tutorial.)
  
 [[:editing_tools|Photoshop]] [[:editing_tools|Photoshop]]
Line 40: Line 46:
  
 Kegetys [[arma:tools:paaplugin|paa Plugin]] (scroll down to ArmA Tools) Kegetys [[arma:tools:paaplugin|paa Plugin]] (scroll down to ArmA Tools)
 +
  
 ====== Visitor 3 Installation and Setup ====== ====== Visitor 3 Installation and Setup ======
Line 69: Line 76:
  
 #Step 11: Now let's save this project so you have something to work with. Go to Project--->Save As, save in as MyMap.pew in P:\MyMap\Source\Terrain. #Step 11: Now let's save this project so you have something to work with. Go to Project--->Save As, save in as MyMap.pew in P:\MyMap\Source\Terrain.
 +
  
 ====== Create, Export and Import Terrain ====== ====== Create, Export and Import Terrain ======
Line 98: Line 106:
  
 #Step 6: So now you have generated your terrain, this is how you import it to Visitor. In P:\MyMap\Source\Terrain, create a .txt file, inside this file you put this: #Step 6: So now you have generated your terrain, this is how you import it to Visitor. In P:\MyMap\Source\Terrain, create a .txt file, inside this file you put this:
-<code>+<code cpp>
 class cfg class cfg
 { {
Line 125: Line 133:
  
 Additional note- you can also edit your png heightmap in Photoshop, but it appears as if PS does some funky stuff to your height map, in this case just open and save it in Wilbur after editing in PS, this should solve the error. Additional note- you can also edit your png heightmap in Photoshop, but it appears as if PS does some funky stuff to your height map, in this case just open and save it in Wilbur after editing in PS, this should solve the error.
 +
  
 ====== Satellite/mask Creation and Preparation for Import ====== ====== Satellite/mask Creation and Preparation for Import ======
Line 198: Line 207:
  
 Example: Example:
-<code>+<code cpp>
 ambient[] = {0.9,0.9,0.9,1}; ambient[] = {0.9,0.9,0.9,1};
 diffuse[] = {0.9,0.9,0.9,1}; diffuse[] = {0.9,0.9,0.9,1};
Line 238: Line 247:
  
 Using the previous examples; here's how your layers.cfg should look like: Using the previous examples; here's how your layers.cfg should look like:
-<code>+<code cpp>
 class Layers class Layers
 { {
Line 286: Line 295:
  
 The second thing you'll need to do is telling Visitor where to save your Layers, in Visitor go to tools---> Project Preferences, in the top line where it says "Folder Textures" write: MyMap\Data. The second thing you'll need to do is telling Visitor where to save your Layers, in Visitor go to tools---> Project Preferences, in the top line where it says "Folder Textures" write: MyMap\Data.
 +
  
 ====== Import and PNG to PAA Conversion ====== ====== Import and PNG to PAA Conversion ======
Line 308: Line 318:
  
 Note- You're probably going to do something wrong here, either because I wrote something wrong you missed something, but don't let it get you down, things like these takes patience, trial and error to learn. Note- You're probably going to do something wrong here, either because I wrote something wrong you missed something, but don't let it get you down, things like these takes patience, trial and error to learn.
 +
  
 ====== Insertion of Objects / Vegetation ====== ====== Insertion of Objects / Vegetation ======
Line 326: Line 337:
  
 # Step 5: Vegetation works the same way as other object except you choose "Nature Objects" in tools, also here it becomes somewhat more important that you randomize the object size in Artificial Objects Definition so that the vegetation doesn't look identical to neighboring objects. # Step 5: Vegetation works the same way as other object except you choose "Nature Objects" in tools, also here it becomes somewhat more important that you randomize the object size in Artificial Objects Definition so that the vegetation doesn't look identical to neighboring objects.
 +
  
 ====== Roads ====== ====== Roads ======
Line 332: Line 344:
  
 Save as MyMap.pew now so you don't lose your work. Save as MyMap.pew now so you don't lose your work.
 +
  
 ====== Getting Map Ingame ====== ====== Getting Map Ingame ======
Line 340: Line 353:
  
 # Step 1:Second thing you'll need is a config, Here's a working example of one: # Step 1:Second thing you'll need is a config, Here's a working example of one:
-<code>+<code cpp>
 #define ReadAndWrite 0 #define ReadAndWrite 0
 #define ReadAndCreate 1 #define ReadAndCreate 1
Line 729: Line 742:
  
 Well that about concludes this short tutorial, I hope you found it usefull, also if anybody else is writing a tutorial feel perfectly free to use any info from this one, share your knowledge and different perspectives. Well that about concludes this short tutorial, I hope you found it usefull, also if anybody else is writing a tutorial feel perfectly free to use any info from this one, share your knowledge and different perspectives.
 +
  
 ====== Notes ====== ====== Notes ======
arma/terrain/v3_quick_tutorial.1209919383.txt.gz · Last modified: 2008/05/04 16:43 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki

All PMC web site download services are temporarily suspended until web site yearly fees have been recovered, want to download addons/mods? Then Support PMC.

If you are grateful for all the work PMC has done in the past 25 years, use Support PMC page.