Yakovlev Yak-18T Просмотр ZIP-архива

Project Yak-18T/plugins/librain.plugin/docs/HOWTO.txt

======================
LIBRAIN PLUGIN VERSION
======================

This is a standalone plugin version of the librain effects library. It's
primary purpose to allow interfacing with the library with minimum effort
from scripting environments such as Lua.

The plugin exposes the librain interfaces via datarefs. Please note, that
the plugin doesn't attempt to do much error checking or hand-holding. You
should still read the librain documentation to understand what all of the
fields in the datarefs mean.

-------------------
DATAREF DESCRIPTION
-------------------

1) The plugin provides up to 4 glass surfaces (librain_glass_t) for
   rendering. The datarefs for each glass surface are arranged as follows:

    librain/glass_0/...
    ...
    librain/glass_3/...

   The names of the datarefs under these paths corresponds to the various
   fields in a librain_glass_t. See librain.h in the plugin for a detailed
   description.

2) Each glass surface needs an OBJ to be loaded prior to initializing it.
   To load an OBJ, set its path in the corresponding "filename" dataref
   and set the "load" dataref to '1' to initiate the load. File paths can
   be absolute, or relative (relative paths are relative to the X-Plane
   root folder).

    librain/glass_0/obj/filename = "C:\X-Plane\Aircraft\MyPlane\test.obj"
    librain/glass_0/obj/load = 1

   When an OBJ load succeeds, the library sets the corresponding `loaded'
   dataref to 1:

    librain/glass_0/obj/loaded = 1

   If the OBJ load fails for whatever reason, the `loaded' dataref remains
   set to `0' and an error message with the reason is printed into the
   sim's Log.txt. You can reload an object after making changes by simply
   setting .../obj/load to '1' again.

   To load an OBJ with a position offset (when in use in PlaneMaker), set
   the corresponding .../obj/pos_offset/{x, y, z} datarefs first and then
   load the OBJ.

3) Define z-depth masking objects. The library allows for up to 20 masking
   objects by default. The loading procedure is similar to the main glass
   surface object. Use the following datarefs:

    librain/z_depth_obj_*/filename = "path/to/object.obj"
    librain/z_depth_obj_*/pos_offset/x
    librain/z_depth_obj_*/pos_offset/y
    librain/z_depth_obj_*/pos_offset/z
    librain/z_depth_obj_*/load = 1      <- initiates object load

   Here '*' represents a number from 0 to 19.

4) To control global aspects of the library, use the following datarefs:

    librain/num_glass_use = 0 ... 3	<- Defines how many librain/glass_N
					   structures you want to use.
					   This field MUST NOT be written
					   after the library has been
					   initialized. To make changes,
					   de-initialize the library first.

    librain/initialize = 1		<- Causes the library to initialize
					   itself. Do this AFTER setting up
					   all of the librain/glass_N
					   structures and loading all OBJs
					   you plan to use. Set to '0' to
					   de-initialize the library and
					   make changes to the number of
					   glass structures used.

    librain/init_success		<- Will be set to '1' when the
					   library init has succeeded.

    librain/debug_draw = 1		<- Enables debug drawing of the
					   z-depth masking objects. Use
					   this to figure out object
					   positioning during development.

    librain/wipers_visible = 1		<- Turns on debug drawing of the
					   wiper position on the glass
					   surface.

    librain/verbose = 1			<- Turns on more verbose logging
					   into Log.txt. Use this to show
					   helpful messages about operations
					   that have succeeded (e.g. loading
					   of an OBJ). Normally the plugin
					   is quiet unless something went
					   wrong.

5) If your aircraft has windshield wipers, use the following datarefs
   to update their positions:

    librain/glass_N/wiper_M/angle = <RADIANS>
    librain/glass_N/wiper_M/is_moving = 0 or 1

   To get proper animation, these must be updated every flight loop.

-------------------------
MINIMUM QUICK START HOWTO
-------------------------

1) Turn on verbose mode and debug drawing:

    librain/verbose = 1
    librain/debug_draw = 1
    librain/wipers_visible = 1

2) Load the windshield OBJ:

    librain/glass_0/obj/filename = "test.obj"
    librain/glass_0/obj/load = 1

2a) OPTIONAL: define one or more z-depth masking objects and load them:

    librain/z_depth_obj_0/filename = "fuselage.obj"
    librain/z_depth_obj_0/load = 1
    librain/z_depth_obj_1/filename = "cabin_interior.obj"
    librain/z_depth_obj_1/load = 1
    ...

3) Tell the library to initialize itself:

    librain/initialize = 1

64973-Project-Yak-18T-v1.00.zip

Имя файла Дата Размер
Project Yak-18T/ 12.04.2019 13:59
Project Yak-18T/airfoils/ 07.04.2019 21:47
Project Yak-18T/airfoils/ASDG EPPLER 857 Prop Root.afl 03.02.2019 18:04 125 KB
Project Yak-18T/airfoils/ASDG HAM-STD HS1606 Prop Tip.afl 03.02.2019 18:04 125 KB
Project Yak-18T/airfoils/ASDG NACA0009.afl 03.02.2019 18:04 100 KB
Project Yak-18T/airfoils/Clark YH 14.5.afl 07.04.2019 20:01 75 KB
Project Yak-18T/airfoils/Clark YH 9.3.afl 07.04.2019 20:01 75 KB
Project Yak-18T/airfoils/Clark YH.afl 07.04.2019 19:02 14 KB
Project Yak-18T/airfoils/Hurr_mid.afl 07.04.2019 19:02 25 KB
Project Yak-18T/airfoils/Hurr_root.afl 07.04.2019 19:02 25 KB
Project Yak-18T/avionics.lua 10.04.2019 18:03 16 KB
Project Yak-18T/cockpit/ 09.04.2019 23:16
Project Yak-18T/cockpit/-PANELS-/ 23.03.2019 21:33
Project Yak-18T/cockpit/-PANELS-/Panel.png 23.03.2019 21:33 228 KB
Project Yak-18T/cockpit/annunciators/ 17.03.2019 16:57
Project Yak-18T/cockpit/annunciators/ann_pitot_heat-1.png 25.02.2019 22:28 41 KB
Project Yak-18T/cockpit/annunciators/ann_pitot_heat.png 25.02.2019 22:29 23 KB
Project Yak-18T/cockpit/buttons/ 01.03.2019 01:05
Project Yak-18T/cockpit/buttons/landing gear/ 24.02.2019 20:14
Project Yak-18T/cockpit/buttons/landing gear/but_gear_light_DN-1.png 24.02.2019 20:13 25 KB
Project Yak-18T/cockpit/buttons/landing gear/but_gear_light_DN.png 22.02.2019 17:55 24 KB
Project Yak-18T/cockpit/buttons/landing gear/but_gear_light_UP-1.png 24.02.2019 20:14 25 KB
Project Yak-18T/cockpit/buttons/landing gear/but_gear_light_UP.png 22.02.2019 17:55 24 KB
Project Yak-18T/cockpit/generic/ 23.03.2019 21:36
Project Yak-18T/cockpit/generic/gen_annun_brakes-1.png 25.02.2019 00:05 40 KB
Project Yak-18T/cockpit/generic/gen_annun_brakes.png 24.02.2019 23:23 19 KB
Project Yak-18T/cockpit/generic/gen_annun_chip-1.png 24.02.2019 20:18 40 KB
Project Yak-18T/cockpit/generic/gen_annun_chip.png 24.02.2019 20:18 19 KB
Project Yak-18T/cockpit/generic/gen_annun_flap-1.png 27.02.2019 22:45 42 KB
Project Yak-18T/cockpit/generic/gen_annun_flap.png 27.02.2019 22:45 23 KB
Project Yak-18T/cockpit/generic/gen_annun_flapd-1.png 23.03.2019 21:35 43 KB
Project Yak-18T/cockpit/generic/gen_annun_flapd.png 27.02.2019 22:45 23 KB
Project Yak-18T/cockpit/generic/gen_annun_gearw-1.png 23.03.2019 21:36 46 KB
Project Yak-18T/cockpit/generic/gen_annun_gearw.png 24.02.2019 20:17 19 KB
Project Yak-18T/cockpit/generic/gen_annun_gen-1.png 24.02.2019 20:16 44 KB
Project Yak-18T/cockpit/generic/gen_annun_gen.png 24.02.2019 20:17 19 KB
Project Yak-18T/cockpit/generic/gen_annun_lows-1.png 01.03.2019 00:36 44 KB
Project Yak-18T/cockpit/generic/gen_annun_lows.png 27.02.2019 22:45 23 KB
Project Yak-18T/cockpit/generic/gen_annun_stall-1.png 01.03.2019 00:27 42 KB
Project Yak-18T/cockpit/generic/gen_annun_stall.png 24.02.2019 20:18 19 KB
Project Yak-18T/cockpit/generic/gen_annun_tankl-1.png 28.02.2019 23:47 47 KB
Project Yak-18T/cockpit/generic/gen_annun_tankl.png 24.02.2019 20:18 19 KB
Project Yak-18T/cockpit/generic/gen_annun_tankr-1.png 24.02.2019 20:18 43 KB
Project Yak-18T/cockpit/generic/gen_annun_tankr.png 24.02.2019 20:18 19 KB
Project Yak-18T/cockpit/generic/gen_annun_trimm-1.png 23.03.2019 18:14 47 KB
Project Yak-18T/cockpit/generic/gen_annun_trimm.png 24.02.2019 20:18 19 KB
Project Yak-18T/cockpit/generic/gen_rolling-1.png 18.05.2010 23:34 15 KB
Project Yak-18T/cockpit/generic/gen_rolling-3.png 18.05.2010 23:59 3 KB
Project Yak-18T/cockpit/generic/gen_rolling.png 19.05.2010 00:06 3 KB
Project Yak-18T/DOCUMENTATION/ 09.04.2019 21:35
Project Yak-18T/DOCUMENTATION/YAK18-T-Cockpit_familiarization.pdf 09.04.2019 21:37 692 KB
Project Yak-18T/DOCUMENTATION/YAK18-T-Normal_procedures.pdf 09.04.2019 20:28 1 MB
Project Yak-18T/fmod/ 10.03.2019 15:56
Project Yak-18T/fmod/GUIDs.txt 11.04.2019 22:54 2 KB
Project Yak-18T/fmod/Master Bank.bank 11.04.2019 22:54 415 KB
Project Yak-18T/fmod/Yak-18.snd 28.03.2019 17:37 10 KB
Project Yak-18T/liveries/ 01.04.2019 22:40
Project Yak-18T/liveries/C-FAME/ 03.04.2019 17:22
Project Yak-18T/liveries/C-FAME/objects/ 09.04.2019 18:25
Project Yak-18T/liveries/C-FAME/objects/yak18t_0.png 03.04.2019 16:33 9 MB
Project Yak-18T/liveries/C-FAME/objects/yak18t_0_NRM.png 03.04.2019 17:05 4 MB
Project Yak-18T/liveries/C-FAME/objects/yak18t_1.png 17.03.2019 16:05 8 MB
Project Yak-18T/liveries/C-FAME/objects/yak18t_1_NRM.png 18.03.2019 23:48 4 MB
Project Yak-18T/liveries/C-FAME/objects/yak18t_5.png 09.04.2019 18:25 1 MB
Project Yak-18T/liveries/C-FAME/Yak-18_icon11.png 03.04.2019 17:20 270 KB
Project Yak-18T/liveries/C-FAME/Yak-18_icon11_thumb.png 03.04.2019 17:22 46 KB
Project Yak-18T/liveries/HA-JAJ/ 03.04.2019 17:22
Project Yak-18T/liveries/HA-JAJ/objects/ 09.04.2019 18:42
Project Yak-18T/liveries/HA-JAJ/objects/yak18t_0.png 03.04.2019 16:19 8 MB
Project Yak-18T/liveries/HA-JAJ/objects/yak18t_0_NRM.png 03.04.2019 16:57 4 MB
Project Yak-18T/liveries/HA-JAJ/objects/yak18t_1.png 02.04.2019 17:55 6 MB
Project Yak-18T/liveries/HA-JAJ/objects/yak18t_1_NRM.png 01.04.2019 22:30 4 MB
Project Yak-18T/liveries/HA-JAJ/objects/yak18t_5.png 09.04.2019 18:42 1 MB
Project Yak-18T/liveries/HA-JAJ/Yak-18_icon11.png 03.04.2019 17:20 283 KB
Project Yak-18T/liveries/HA-JAJ/Yak-18_icon11_thumb.png 03.04.2019 17:22 45 KB
Project Yak-18T/liveries/N36YK/ 03.04.2019 17:23
Project Yak-18T/liveries/N36YK/objects/ 09.04.2019 18:25
Project Yak-18T/liveries/N36YK/objects/yak18t_0.png 03.04.2019 16:34 8 MB
Project Yak-18T/liveries/N36YK/objects/yak18t_0_NRM.png 03.04.2019 17:09 4 MB
Project Yak-18T/liveries/N36YK/objects/yak18t_1.png 23.02.2019 00:12 6 MB
Project Yak-18T/liveries/N36YK/objects/yak18t_1_NRM.png 18.03.2019 23:48 4 MB
Project Yak-18T/liveries/N36YK/objects/yak18t_5.png 09.04.2019 18:25 1 MB
Project Yak-18T/liveries/N36YK/Yak-18_icon11.png 03.04.2019 17:19 278 KB
Project Yak-18T/liveries/N36YK/Yak-18_icon11_thumb.png 03.04.2019 17:23 45 KB
Project Yak-18T/liveries/OK-YAK/ 03.04.2019 17:23
Project Yak-18T/liveries/OK-YAK/objects/ 09.04.2019 18:24
Project Yak-18T/liveries/OK-YAK/objects/yak18t_0.png 03.04.2019 16:34 9 MB
Project Yak-18T/liveries/OK-YAK/objects/yak18t_0_NRM.png 03.04.2019 17:11 4 MB
Project Yak-18T/liveries/OK-YAK/objects/yak18t_1.png 16.02.2019 05:13 8 MB
Project Yak-18T/liveries/OK-YAK/objects/yak18t_1_NRM.png 18.03.2019 23:48 4 MB
Project Yak-18T/liveries/OK-YAK/objects/yak18t_5.png 09.04.2019 18:24 1 MB
Project Yak-18T/liveries/OK-YAK/Yak-18_icon11.png 03.04.2019 17:19 271 KB
Project Yak-18T/liveries/OK-YAK/Yak-18_icon11_thumb.png 03.04.2019 17:23 45 KB
Project Yak-18T/objects/ 12.04.2019 18:53
Project Yak-18T/objects/adf.obj 17.03.2019 21:08 112 KB
Project Yak-18T/objects/fuselage.obj 03.04.2019 16:17 2 MB
Project Yak-18T/objects/glass.obj 23.01.2019 21:16 86 KB
Project Yak-18T/objects/glass_gau.obj 26.02.2019 23:51 53 KB
Project Yak-18T/objects/glass_in.obj 06.02.2019 17:26 24 KB
Project Yak-18T/objects/glass_out.obj 24.02.2019 20:04 35 KB
Project Yak-18T/objects/instruments.obj 12.04.2019 12:27 3 MB
Project Yak-18T/objects/interior.obj 12.04.2019 22:53 1 MB
Project Yak-18T/objects/librain/ 10.04.2019 20:21
Project Yak-18T/objects/librain/front.obj 10.04.2019 11:43 4 KB
Project Yak-18T/objects/librain/left.obj 10.04.2019 11:43 5 KB
Project Yak-18T/objects/librain/right.obj 10.04.2019 11:43 5 KB
Project Yak-18T/objects/librain/top.obj 10.04.2019 11:44 10 KB
Project Yak-18T/objects/pilot.obj 26.03.2019 00:50 742 KB
Project Yak-18T/objects/pilot.png 23.06.2017 01:26 102 KB
Project Yak-18T/objects/prop.obj 20.02.2019 22:52 123 KB
Project Yak-18T/objects/seats.obj 20.03.2019 23:26 898 KB
Project Yak-18T/objects/stickers.obj 10.04.2019 17:50 10 KB
Project Yak-18T/objects/wings.obj 05.03.2019 20:00 357 KB
Project Yak-18T/objects/yak18t_0.png 03.04.2019 16:35 10 MB
Project Yak-18T/objects/yak18t_0_NRM.png 03.04.2019 17:02 8 MB
Project Yak-18T/objects/yak18t_1.png 16.02.2019 05:13 10 MB
Project Yak-18T/objects/yak18t_1_NRM.png 18.03.2019 23:29 9 MB
Project Yak-18T/objects/yak18t_2.png 12.04.2019 18:53 15 MB
Project Yak-18T/objects/yak18t_2_NRM.png 11.04.2019 16:02 9 MB
Project Yak-18T/objects/yak18t_3.png 20.03.2019 23:54 15 MB
Project Yak-18T/objects/yak18t_3_NRM.png 20.03.2019 22:40 16 MB
Project Yak-18T/objects/yak18t_4.png 07.04.2019 17:52 14 MB
Project Yak-18T/objects/yak18t_4_NRM.png 07.04.2019 17:54 9 MB
Project Yak-18T/objects/yak18t_5.png 09.04.2019 18:24 1 MB
Project Yak-18T/objects/yak18t_6.png 01.03.2019 18:40 146 KB
Project Yak-18T/objects/yak18t_6_LIT.dds 23.03.2019 21:53 342 KB
Project Yak-18T/objects/yak18t_6_NRM.png 23.06.2017 01:33 240 KB
Project Yak-18T/objects/yak18t_glass_gau.png 06.02.2019 19:49 877 KB
Project Yak-18T/objects/yak18t_glass_gau_NRM.png 06.02.2019 18:44 15 KB
Project Yak-18T/objects/yak18t_glass_in.dds 06.02.2019 20:56 5 MB
Project Yak-18T/objects/yak18t_glass_out.dds 06.02.2019 17:32 1 MB
Project Yak-18T/objects/yak18t_glass_out_NRM.png 23.06.2017 01:37 431 B
Project Yak-18T/panels.txt 17.04.2019 11:36 19 B
Project Yak-18T/plugins/ 29.03.2019 20:31
Project Yak-18T/plugins/librain.plugin/ 28.03.2019 21:12
Project Yak-18T/plugins/librain.plugin/docs/ 28.03.2019 21:12
Project Yak-18T/plugins/librain.plugin/docs/COPYING 03.02.2019 10:42 20 KB
Project Yak-18T/plugins/librain.plugin/docs/COPYING.txt 03.02.2019 10:42 20 KB
Project Yak-18T/plugins/librain.plugin/docs/HOWTO 03.02.2019 10:42 5 KB
Project Yak-18T/plugins/librain.plugin/docs/HOWTO.txt 03.02.2019 10:42 5 KB
Project Yak-18T/plugins/librain.plugin/docs/librain.h 03.02.2019 10:42 18 KB
Project Yak-18T/plugins/librain.plugin/docs/README.md 03.02.2019 10:42 10 KB
Project Yak-18T/plugins/librain.plugin/lin_x64/ 28.03.2019 21:12
Project Yak-18T/plugins/librain.plugin/lin_x64/librain.plugin.xpl 03.02.2019 10:42 2 MB
Project Yak-18T/plugins/librain.plugin/mac_x64/ 28.03.2019 21:12
Project Yak-18T/plugins/librain.plugin/mac_x64/librain.plugin.xpl 03.02.2019 10:42 938 KB
Project Yak-18T/plugins/librain.plugin/shaders/ 28.03.2019 21:12
Project Yak-18T/plugins/librain.plugin/shaders/generic.vert.glsl 03.02.2019 10:42 406 B
Project Yak-18T/plugins/librain.plugin/shaders/generic.vert.glsl420 03.02.2019 10:42 343 B
Project Yak-18T/plugins/librain.plugin/shaders/generic.vert.spv 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_blur.frag.glsl 03.02.2019 10:42 2 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_blur.frag.glsl420 03.02.2019 10:42 2 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_blur.frag.spv 03.02.2019 10:42 5 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth.vert.glsl 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth.vert.glsl420 03.02.2019 10:42 1015 B
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth.vert.spv 03.02.2019 10:42 3 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_add_line.frag.glsl 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_add_line.frag.glsl420 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_add_line.frag.spv 03.02.2019 10:42 3 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_add_point.frag.glsl 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_add_point.frag.glsl420 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_add_point.frag.spv 03.02.2019 10:42 3 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_deice_line.frag.glsl 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_deice_line.frag.glsl420 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_deice_line.frag.spv 03.02.2019 10:42 3 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_deice_point.frag.glsl 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_deice_point.frag.glsl420 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_deice_point.frag.spv 03.02.2019 10:42 3 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_remove_line.frag.glsl 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_remove_line.frag.glsl420 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_remove_line.frag.spv 03.02.2019 10:42 3 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_remove_point.frag.glsl 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_remove_point.frag.glsl420 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_depth_remove_point.frag.spv 03.02.2019 10:42 3 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_norm.frag.glsl 03.02.2019 10:42 796 B
Project Yak-18T/plugins/librain.plugin/shaders/ice_norm.frag.glsl420 03.02.2019 10:42 717 B
Project Yak-18T/plugins/librain.plugin/shaders/ice_norm.frag.spv 03.02.2019 10:42 3 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_render.frag.glsl 03.02.2019 10:42 1004 B
Project Yak-18T/plugins/librain.plugin/shaders/ice_render.frag.glsl420 03.02.2019 10:42 927 B
Project Yak-18T/plugins/librain.plugin/shaders/ice_render.frag.spv 03.02.2019 10:42 3 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_render_blur.frag.glsl 03.02.2019 10:42 1 KB
Project Yak-18T/plugins/librain.plugin/shaders/ice_render_blur.frag.spv 03.02.2019 10:42 4 KB
Project Yak-18T/plugins/librain.plugin/shaders/nil.frag.glsl 03.02.2019 10:42 281 B
Project Yak-18T/plugins/librain.plugin/shaders/nil.frag.glsl420 03.02.2019 10:42 210 B
Project Yak-18T/plugins/librain.plugin/shaders/nil.frag.spv 03.02.2019 10:42 664 B
Project Yak-18T/plugins/librain.plugin/shaders/rain_stage1.frag.glsl 03.02.2019 10:42 7 KB
Project Yak-18T/plugins/librain.plugin/shaders/rain_stage1.frag.glsl420 03.02.2019 10:42 7 KB
Project Yak-18T/plugins/librain.plugin/shaders/rain_stage1.frag.spv 03.02.2019 10:42 14 KB
Project Yak-18T/plugins/librain.plugin/shaders/rain_stage2.frag.glsl 03.02.2019 10:42 2 KB
Project Yak-18T/plugins/librain.plugin/shaders/rain_stage2.frag.glsl420 03.02.2019 10:42 2 KB
Project Yak-18T/plugins/librain.plugin/shaders/rain_stage2.frag.spv 03.02.2019 10:42 5 KB
Project Yak-18T/plugins/librain.plugin/shaders/ws_rain.frag.glsl 03.02.2019 10:42 3 KB
Project Yak-18T/plugins/librain.plugin/shaders/ws_rain.frag.glsl420 03.02.2019 10:42 3 KB
Project Yak-18T/plugins/librain.plugin/shaders/ws_rain.frag.spv 03.02.2019 10:42 6 KB
Project Yak-18T/plugins/librain.plugin/shaders/ws_smudge.frag.glsl 03.02.2019 10:42 2 KB
Project Yak-18T/plugins/librain.plugin/shaders/ws_smudge.frag.glsl420 03.02.2019 10:42 2 KB
Project Yak-18T/plugins/librain.plugin/shaders/ws_smudge.frag.spv 03.02.2019 10:42 4 KB
Project Yak-18T/plugins/librain.plugin/shaders/ws_temp.frag.glsl 03.02.2019 10:42 5 KB
Project Yak-18T/plugins/librain.plugin/shaders/ws_temp.frag.glsl420 03.02.2019 10:42 5 KB
Project Yak-18T/plugins/librain.plugin/shaders/ws_temp.frag.spv 03.02.2019 10:42 9 KB
Project Yak-18T/plugins/librain.plugin/win_x64/ 28.03.2019 21:12
Project Yak-18T/plugins/librain.plugin/win_x64/librain.plugin.xpl 03.02.2019 10:42 2 MB
Project Yak-18T/plugins/sasl/ 29.03.2019 20:31
Project Yak-18T/plugins/sasl/64/ 29.03.2019 20:31
Project Yak-18T/plugins/sasl/64/lin.xpl 26.10.2018 07:39 2 MB
Project Yak-18T/plugins/sasl/64/mac.xpl 26.10.2018 07:49 2 MB
Project Yak-18T/plugins/sasl/64/win.xpl 26.10.2018 07:50 1 MB
Project Yak-18T/plugins/sasl/changelog.txt 26.10.2018 07:36 6 KB
Project Yak-18T/plugins/sasl/data/ 29.03.2019 20:31
Project Yak-18T/plugins/sasl/data/components/ 29.03.2019 20:31
Project Yak-18T/plugins/sasl/data/components/button.lua 28.03.2018 01:59 438 B
Project Yak-18T/plugins/sasl/data/components/clickable.lua 12.10.2018 11:07 114 B
Project Yak-18T/plugins/sasl/data/components/clickable.png 28.03.2018 01:59 250 B
Project Yak-18T/plugins/sasl/data/components/close.png 28.03.2018 01:59 399 B
Project Yak-18T/plugins/sasl/data/components/cursor.png 12.10.2018 11:10 2 KB
Project Yak-18T/plugins/sasl/data/components/digits-tape-bg.png 28.03.2018 01:59 248 B
Project Yak-18T/plugins/sasl/data/components/digits-tape.png 28.03.2018 01:59 1 KB
Project Yak-18T/plugins/sasl/data/components/digitstape.lua 28.03.2018 01:59 2 KB
Project Yak-18T/plugins/sasl/data/components/frame.lua 28.03.2018 01:59 79 B
Project Yak-18T/plugins/sasl/data/components/free_texture.lua 28.03.2018 01:59 281 B
Project Yak-18T/plugins/sasl/data/components/lamp.lua 28.03.2018 01:59 572 B
Project Yak-18T/plugins/sasl/data/components/lever.lua 12.10.2018 14:16 2 KB
Project Yak-18T/plugins/sasl/data/components/lever2.lua 12.10.2018 14:21 2 KB
Project Yak-18T/plugins/sasl/data/components/leverV.lua 07.05.2018 01:28 2 KB
Project Yak-18T/plugins/sasl/data/components/needle-top.png 28.03.2018 01:59 207 B
Project Yak-18T/plugins/sasl/data/components/needle.lua 28.03.2018 01:59 399 B
Project Yak-18T/plugins/sasl/data/components/needle.tga 28.03.2018 01:59 3 KB
Project Yak-18T/plugins/sasl/data/components/none.png 28.03.2018 01:59 178 B
Project Yak-18T/plugins/sasl/data/components/Pointer.png 26.05.2018 19:09 7 KB
Project Yak-18T/plugins/sasl/data/components/PointerV.png 10.11.2015 14:53 2 KB
Project Yak-18T/plugins/sasl/data/components/rectangle.lua 28.03.2018 01:59 169 B
Project Yak-18T/plugins/sasl/data/components/rotary.lua 28.03.2018 01:59 2 KB
Project Yak-18T/plugins/sasl/data/components/rotary.png 28.03.2018 01:59 1 KB
Project Yak-18T/plugins/sasl/data/components/rotated_tape.lua 11.10.2018 10:42 570 B
Project Yak-18T/plugins/sasl/data/components/rotateleft.png 28.03.2018 01:59 215 B
Project Yak-18T/plugins/sasl/data/components/rotateright.png 28.03.2018 01:59 232 B
Project Yak-18T/plugins/sasl/data/components/switch.lua 12.10.2018 14:01 793 B
Project Yak-18T/plugins/sasl/data/components/tape.lua 28.03.2018 01:59 432 B
Project Yak-18T/plugins/sasl/data/components/text.lua 28.03.2018 01:59 182 B
Project Yak-18T/plugins/sasl/data/components/texture.lua 11.10.2018 10:42 212 B
Project Yak-18T/plugins/sasl/data/components/textureLit.lua 12.10.2018 10:33 261 B
Project Yak-18T/plugins/sasl/data/components/togglePanelButton.lua 28.03.2018 01:59 506 B
Project Yak-18T/plugins/sasl/data/components/white-digits.png 28.03.2018 01:59 1 KB
Project Yak-18T/plugins/sasl/data/scripts/ 29.03.2019 20:31
Project Yak-18T/plugins/sasl/data/scripts/init.lua 04.05.2018 19:21 44 KB
Project Yak-18T/plugins/sasl/License 04.05.2018 19:21 3 KB
Project Yak-18T/plugins/sasl/OpenAL32.dll 03.01.2017 23:36 288 KB
Project Yak-18T/version.txt 19.04.2019 21:18 5 B
Project Yak-18T/Yak-18.acf 12.04.2019 12:01 1 MB
Project Yak-18T/Yak-18_cockpit.obj 17.04.2019 11:20 549 KB
Project Yak-18T/Yak-18_icon11.png 03.04.2019 17:20 263 KB
Project Yak-18T/Yak-18_icon11_thumb.png 03.04.2019 17:22 46 KB
Project Yak-18T/Yak-18_prefs.txt 17.04.2019 11:36 4 KB
Project Yak-18T/Yak-18_prop_disc_2.png 17.03.2019 17:03 809 KB
avsim_su.diz 21.04.2019 21:34 310 B
Итого: 249 MB
This is the very first aircraft model from PWDT for X-Plane 11, highly optimized for best framerates and for easiest usage. Therefore doesn't use any plugin - except librain - for the special equipments, all systems comes from generic X-Plane datarefs. So some systems not meet with the originals, but hopefully still useable and gives lot of fun for the virtual pilots. Maybe these deficiencies will be fixed in the upcoming patch. Repaint kit will be release as a separate file within a few days.

Features:

o Highly optimized 3D model
o 4K high detailed PBR textures
o Realistic flight model
o Realistic custom FMOD sounds
o Full 3D virtual cockpit
o Full 3D instruments
o Built-in Librain effect

Special thanks to:

- Mihaly Alberti (aka ksgy, author of X-Plane Let L-410)
- Adrian Nagy-Hinst (author of Nhadrian/Carenado C-152)
- Alan Shafto
- Alex Pisarenko
- Gergely Debreceni (author of updated Mins Mi-2 for X-Plane 11)
- domhenry

Thank you guys, this project wouldn't have been released without your kindly help and ideas!

If you like this little Yak, you can buy me a beer coffee if you will: https://www.paypal.me/tiborkok​ai
→ Size: 226 MB
→ Date: 7 years ago (23.04.2019 01:57)
→ Author: Pannon WIngs Design Team
→ Approved by moderator: Ляпучка
→ License: Freeware - Free version, Do Not Redistribute
→ Downloaded: 3095 time(s)