Search results

  1. M

    General Question Simulate heat shield

    //*******************SIMULATION HEAT SHIELD*********************** double atmTemp = 0.5*(GetAtmDensity()*(GetAirspeed()*GetAirspeed()*GetAirspeed())); double alpha = ((atmTemp-40000000) / 100000000); double shield; if (alpha > 1) alpha = 1; if (alpha < 0) alpha = 0; SetMeshVisibilityMode...
  2. M

    Project Spiral mig-105

    Spiral "the return" :D work continues..... was added to the button for the ignition of the jet engine and a lot of things I was able to simulate the heat shield so real enough .... I think:hmm:
  3. M

    Problem Unable to compile Atlantis sample (VC++2008)

    Click with the right button of mouse over the solution"atlantis" and manually add > existing item > orbiter.lib Orbitersdk.lib
  4. M

    Problem Unable to compile Atlantis sample (VC++2008)

    You have included last libraries? Orbiter.lib and Orbitersdk.lib? And meshres.h in the project?
  5. M

    Orbiter Screenshot Thread

    Sci-Fi Star Wars My DeathStar with lights :P Shuttle Tyderium in the bay....and imperial soldiers :facepalm: Executor by night :cool: More...detailed
  6. M

    Meshing Question Simple Anim8or method eludes me - D'oh!

    After importing the mesh,you still go to the menu "Object". Your mesh imported will appear below the main project: Object Import Export Attributes ---------- Mymesh Importedmesh
  7. M

    Meshing Question Simple Anim8or method eludes me - D'oh!

    Open"Object"menu and Import
  8. M

    C++ Question Multiple Docking Ports

    DOCKHANDLE Dock0,Dock1; Dock0 = CreateDock(_V(0,-2.248,13.097), _V(0,0,1), _V(0,1,0)); Dock1 = CreateDock(_V(0,-2.248,13.097), _V(0,0,1), _V(0,1,0));
  9. M

    General Question Simulate heat shield

    Beyond the formulas more or less valid, with the spot light we can not get a very good effect shield, :rolleyes: I think you need to add a mesh with MESHPROPERTY_MODULATEMATALPHA formula
  10. M

    General Question Simulate heat shield

    :lol: depends on what you do with the girl double heat = (0.5*GetDynPressure() * (GetAirspeed()))/100000; if (heat>300)shield_proc=0.01; if (heat<1200) shield_proc=1.0; shield_proc = min(heat/1200.0, 1.0);
  11. M

    General Question Simulate heat shield

    Very thank tblaxland :tiphat:
  12. M

    General Question Simulate heat shield

    This formula is much better!:thumbup: If i want from a higher value than zero? I try changing the texture alpha channel to be able to find a right shade :rolleyes: double heat = (0.5*GetDynPressure() * (GetAirspeed()))/100000; shield_proc = min(heat/1200.0, 1.0); SpotLight* le1...
  13. M

    General Question Simulate heat shield

    Si ma il mio problema è trasformare un certo range di pressione dinamica ad uno che venga usato per settare l'intensità da lvl o a lvl 1 o 10 non sò ---------- Post added 11-03-10 at 01:51 AM ---------- Previous post was 11-02-10 at 03:52 PM ---------- double heat=GetDynPressure()...
  14. M

    General Question Simulate heat shield

    Hi guys I have an idea,and want to know if i can achieve it. Orbiter gives us the ability to use the spot light or point light by varying the intensity: LightEmitter *le = AddPointLight (_V(0,-2.0,-29), 200, 1e-3, 0, 2e-3, col_d, col_s, col_a); le->SetIntensityRef (&th_main_level); It...
  15. M

    C++ Question On-Off SpotLight

    Oh thank's PRicci :thumbup: i never thought :facepalm: Now it works :cheers:
  16. M

    C++ Question On-Off SpotLight

    In this formula the spot light is on: docking_light = (SpotLight*)AddSpotLight(_V(0.0,-1.022404,12.6), _V(0,0,1), 150, 1e-3, 0, 1e-3, RAD*25, RAD*60, col_white, col_white, col_a); docking_light->Activate(true); How can i turn off automatically when the door is closed?:idk: :hail::hail:
  17. M

    Problem cannot open include file afxres.h

    ========== Compilazione: 3 completate, 0 non riuscite, 1 aggiornate, 0 ignorate ========== :thumbup::thumbup::thumbup: Very thank !!!
  18. M

    Problem cannot open include file afxres.h

    I put the file "afxres.h" in the folder Microsoft SDKs 1>------ Inizio compilazione: Progetto: Atlantis, Configurazione: Release Win32 ------ 2>------ Inizio compilazione: Progetto: AtlantisConfig, Configurazione: Release Win32 ------ 2>C:\Programmi\Microsoft...
  19. M

    Problem cannot open include file afxres.h

    Hi guys I can not build the module at the Atlantis,it always gives me this error: 1>Atlantis.rc(10): fatal error RC1015: cannot open include file 'afxres.h'. Why?This file is included :shrug:
  20. M

    C++ Question How to determine if animation will not stop

    If you can help this code // Turbine Anims // Engine start if (engstart == 1) { if (iopt >1 )iopt = 0; iopt = iopt + engrot; engrot = engrot + 0.0005; if (engrot > 0.1333) { engstart = 2; engrot = 0.1333; } SetAnimation (anim_eng, iopt); } // Engine on if (engstart == 2) { if (iopt >1...
Back
Top