seta g_ghost_items 1 "enable ghosted items (when between 0 and 1, overrides the alpha value)"\r
seta g_ghost_items_color "-1 -1 -1" "color of ghosted items, 0 0 0 leaves the color unchanged"\r
\r
-set cl_vore_stomachmodel 1 "when enabled, we see the stomach model around us when eaten. -1 = disabled, 1 = enabled, anything between = alpha"\r
+seta cl_vore_stomachmodel 1 "when enabled, we see the stomach model around us when eaten. -1 = disabled, 1 = enabled, anything between = alpha"\r
+seta cl_vore_swallowmodel 1 "when enabled, we see the swallow model around us while getting eaten. -1 = disabled, 1 = enabled, anything between = alpha"\r
seta cl_vore_cutvolume_sound 0.75 "sound volume is reduced to this amount when you are in a stomach"\r
seta cl_vore_cutvolume_music 0.25 "music volume is reduced to this amount when you are in a stomach"\r
seta cl_vore_cutvolume_fade 0.1 "fading speed of the volume change"\r
me.TD(me, 1, 1, e = makeVoretRadioButton(1, "chase_active", "1", "3rd person"));\r
me.TR(me);\r
me.TD(me, 1, 2, e = makeVoretCheckBoxEx(1, -1, "cl_vore_stomachmodel", "Stomach model"));\r
+ makeMulti(e, "cl_vore_swallowmodel");\r
setDependent(e, "chase_active", 0, 0);\r
me.TR(me);\r
me.TR(me);\r
.float cvar_cl_gunalign;\r
.float cvar_cl_noantilag;\r
.float cvar_cl_vore_stomachmodel;\r
+.float cvar_cl_vore_swallowmodel;\r
.float cvar_cl_vore_autodigest;\r
.float cvar_chase_active;\r
\r
GetCvars_handleFloat(s, f, cvar_cl_accuracy_data_receive, "cl_accuracy_data_receive");\r
GetCvars_handleFloat(s, f, cvar_chase_active, "chase_active");\r
GetCvars_handleFloat(s, f, cvar_cl_vore_stomachmodel, "cl_vore_stomachmodel");\r
+ GetCvars_handleFloat(s, f, cvar_cl_vore_swallowmodel, "cl_vore_swallowmodel");\r
GetCvars_handleFloat(s, f, cvar_cl_vore_autodigest, "cl_vore_autodigest");\r
\r
self.cvar_cl_accuracy_data_share = boolean(self.cvar_cl_accuracy_data_share);\r
}\r
\r
// properties that should update whenever possible, but when the predator is not available\r
- self.alpha = self.owner.cvar_cl_vore_stomachmodel;\r
+ self.alpha = self.owner.cvar_cl_vore_swallowmodel;\r
self.nextthink = time;\r
}\r
\r